Mercurial Hosting > luan
comparison host/startup/nginx/nginx.conf.luan @ 2062:5ede71739221
merge branches
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sat, 15 Nov 2025 18:07:51 -0700 |
| parents | 55077903f642 |
| children |
comparison
equal
deleted
inserted
replaced
| 2047:ea026254b3b6 | 2062:5ede71739221 |
|---|---|
| 1 local rootDir, user, group = ... | 1 local rootDir, user, group = ... |
| 2 | 2 |
| 3 %> | 3 %> |
| 4 worker_processes 4; | 4 worker_processes 4; |
| 5 user <%=user%> <%=group%>; | 5 user <%=user%> <%=group%>; |
| 6 pid <%=rootDir%>/local/nginx.pid; | |
| 6 | 7 |
| 7 events { | 8 events { |
| 8 worker_connections 4096; | 9 worker_connections 4096; |
| 9 } | 10 } |
| 10 | 11 |
| 25 listen [::]:80 default_server; | 26 listen [::]:80 default_server; |
| 26 include nginx.default.conf; | 27 include nginx.default.conf; |
| 27 } | 28 } |
| 28 | 29 |
| 29 include <%=rootDir%>/sites/*/nginx.ssl.conf; | 30 include <%=rootDir%>/sites/*/nginx.ssl.conf; |
| 31 include /tmp/acme_setup/*/nginx.acme_setup.conf; | |
| 30 } | 32 } |
| 31 <% | 33 <% |
