reimbursinator/admin/nginx/default.conf

23 lines
437 B
Text
Raw Normal View History

server {
server_name localhost;
listen 445;
ssl on;
ssl_certificate /etc/ssl/private/selfsigned.crt;
ssl_certificate_key /etc/ssl/private/selfsigned.key;
client_max_body_size 4G;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}