Mercurial Hosting > luan
view website/src/init.luan @ 2156:d2e2bb4ad044 nginx_sites_addon
move error_log directive from nginx.default.conf.luan to nginx.conf.luan
| author | Violet7 |
|---|---|
| date | Tue, 27 Jan 2026 19:44:35 -0800 |
| parents | 31f006c64782 |
| children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local Http = require "luan:http/Http.luan" local Hosted = require "luan:host/Hosted.luan" local Shared = require "site:/lib/Shared.luan" local Logging = require "luan:logging/Logging.luan" local logger = Logging.logger "init" Hosted.set_https and Hosted.set_https( Http.domain ~= "www.me.luan.software" ) return true
