Files
start-os/appmgr/src/net/nginx.conf.template
Keagan McClelland 0a9d1b2b1d Feature/nginx management (#483)
* Implements nginx controller and initialization

* adds nginx controller add to netmod add

* adds nginx remove to netmod remove

* fix code review issues
2021-09-20 11:13:04 -06:00

14 lines
344 B
Plaintext

server {{
listen {listen_args};
server_name {hostname}.local;
{ssl_certificate_line}
{ssl_certificate_key_line}
location / {{
proxy_pass http://{app_ip}:{internal_port}/;
proxy_set_header Host $host;
client_max_body_size 0;
proxy_request_buffering off;
proxy_buffering off;
}}
}}