mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
64 lines
2 KiB
Lua
64 lines
2 KiB
Lua
-- reverse proxy for turfwar
|
|
|
|
if IsDaemon() then
|
|
ProgramPort(443)
|
|
ProgramUid(65534)
|
|
ProgramUid(65534)
|
|
ProgramLogPath('/var/log/turfbean.log')
|
|
ProgramPidPath('/var/log/turfbean.pid')
|
|
ProgramTrustedIp(ParseIp(Slurp('/etc/justine-ip.txt')), 32);
|
|
ProgramCertificate(Slurp('/etc/letsencrypt/live/ipv4.games-ecdsa/fullchain.pem'))
|
|
ProgramPrivateKey(Slurp('/etc/letsencrypt/live/ipv4.games-ecdsa/privkey.pem'))
|
|
end
|
|
|
|
RELAY_HEADERS_TO_CLIENT = {
|
|
'Access-Control-Allow-Origin',
|
|
'Cache-Control',
|
|
'Connection',
|
|
'Content-Type',
|
|
'Last-Modified',
|
|
'Referrer-Policy',
|
|
'Vary',
|
|
}
|
|
|
|
function OnServerStart()
|
|
ProgramTokenBucket()
|
|
assert(unix.setrlimit(unix.RLIMIT_NPROC, 1000, 1000))
|
|
end
|
|
|
|
function OnWorkerStart()
|
|
assert(unix.setrlimit(unix.RLIMIT_RSS, 2*1024*1024))
|
|
assert(unix.setrlimit(unix.RLIMIT_CPU, 2))
|
|
assert(unix.unveil(nil, nil))
|
|
assert(unix.pledge("stdio inet", nil, unix.PLEDGE_PENALTY_RETURN_EPERM))
|
|
end
|
|
|
|
function OnHttpRequest()
|
|
local url = 'http://127.0.0.1' .. EscapePath(GetPath())
|
|
local name = GetParam('name')
|
|
if name then
|
|
url = url .. '?name=' .. EscapeParam(name)
|
|
end
|
|
local status, headers, body =
|
|
Fetch(url,
|
|
{method = GetMethod(),
|
|
headers = {
|
|
['Accept'] = GetHeader('Accept'),
|
|
['CF-IPCountry'] = GetHeader('CF-IPCountry'),
|
|
['If-Modified-Since'] = GetHeader('If-Modified-Since'),
|
|
['Referer'] = GetHeader('Referer'),
|
|
['Sec-CH-UA-Platform'] = GetHeader('Sec-CH-UA-Platform'),
|
|
['User-Agent'] = GetHeader('User-Agent'),
|
|
['X-Forwarded-For'] = FormatIp(GetClientAddr())}})
|
|
if status then
|
|
SetStatus(status)
|
|
for k,v in pairs(RELAY_HEADERS_TO_CLIENT) do
|
|
SetHeader(v, headers[v])
|
|
end
|
|
Write(body)
|
|
else
|
|
local err = headers
|
|
Log(kLogError, "proxy failed %s" % {err})
|
|
ServeError(503)
|
|
end
|
|
end
|