mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 12:33:40 +00:00
* Implements nginx controller and initialization * adds nginx controller add to netmod add * adds nginx remove to netmod remove * fix code review issues
14 lines
344 B
Plaintext
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;
|
|
}}
|
|
}}
|