view examples/blog/src/private/tools/backup.html.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 28cd9b3abdb3
children
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"
local Db = require "site:/lib/Db.luan"


return function()
	local backup = Io.uri "site:/private/local/backup.zip"
	backup.delete()
	Db.zip(backup)

	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html lang="en">
	<body>
		backed up to <a href="/private/local/backup.zip">/private/local/backup.zip</a>
	</body>
</html>
<%
end