mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
* WIP: Lan with blocking * stuff * appmgr: non-ui lan services * dbus linker errors * appmgr: allocate on stack * dns resolves finally * cleanup * appmgr: generate ssl if missing * appmgr: remove -p for purge Co-authored-by: Aiden McClelland <me@drbonez.dev>
9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
server {{
|
|
listen {port};
|
|
server_name {hostname}.local;
|
|
location / {{
|
|
proxy_pass http://{app_ip}:{internal_port}/;
|
|
proxy_set_header Host $host;
|
|
}}
|
|
}}
|