annotate host/admin/src/init.luan @ 2036:2740f8a9ba3a
acme-tiny tip
First test prototype (also convert spaces to tabs and remove *.orig files)
| author |
Violet7 |
| date |
Wed, 05 Nov 2025 21:49:39 -0800 |
| parents |
969291201e12 |
| children |
|
| rev |
line source |
|
1995
|
1 local Http = require "luan:http/Http.luan"
|
|
|
2 local Hosted = require "luan:host/Hosted.luan"
|
|
|
3
|
|
|
4 Hosted.set_https and Hosted.set_https(true)
|
|
|
5
|
|
|
6 require "site:/private/lib/monitor.luan"
|
|
2022
|
7 require "site:/private/lib/monitor_lucene_backups.luan"
|
|
1995
|
8
|
|
|
9 Http.dont_gc and Http.dont_gc()
|
|
|
10
|
|
|
11 return true
|