38 lines
No EOL
1 KiB
Text
Executable file
38 lines
No EOL
1 KiB
Text
Executable file
server {
|
|
|
|
access_log /var/log/nginx/ii.access.log combined;
|
|
|
|
root /mnt/blockstorage/ifiles/;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name ii.zzls.xyz;
|
|
|
|
location /upload {
|
|
client_max_body_size 4096M;
|
|
auth_basic "Restricted Content";
|
|
auth_basic_user_file /etc/fileupload.htpasswd;
|
|
proxy_pass http://localhost:40002;
|
|
}
|
|
|
|
|
|
|
|
|
|
listen 443 ssl http2; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/ii.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/ii.zzls.xyz/privkey.pem; # managed by Certbot
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}server {
|
|
if ($host = ii.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
|
|
server_name ii.zzls.xyz;
|
|
listen 80;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
} |