view website/src/examples/hi.html.luan @ 2048:59f3a7f3d10b acme-tiny

add check for local_https in renewSsl.sh
author Violet7
date Tue, 11 Nov 2025 01:45:02 -0800
parents 28cd9b3abdb3
children
line wrap: on
line source

local Io = require "luan:Io.luan"
local Http = require "luan:http/Http.luan"


return function()
	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<html lang="en">
	<body>
		Hello World
	</body>
</html>
<%
end