Mercurial Hosting > luan
view host/startup/nginx/nginx.ssl.conf.luan @ 1776:da85925fea9c
listen ipv6
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Fri, 28 Jul 2023 11:53:03 +0300 |
parents | 63ab02188e9d |
children |
line wrap: on
line source
local rootDir, domain = ... %> server { server_name <%=domain%>; listen 80; listen [::]:80; return 301 https://$http_host$request_uri; } server { server_name <%=domain%>; listen 443 ssl; listen [::]:443 ssl; if ($host != $server_name) { return 301 http://$http_host$request_uri; } ssl_certificate <%=rootDir%>/sites/<%=domain%>/fullchain.cer; ssl_certificate_key <%=rootDir%>/sites/<%=domain%>/<%=domain%>.key; include <%=rootDir%>/sites/<%=domain%>/site/nginx.*.conf; include <%=rootDir%>/local/nginx.default.conf; } <%