mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-19 01:31:34 +00:00
Renamed original NGINX config (SSL Version)
This commit is contained in:
parent
465607cd5b
commit
9465cce88a
43
nginx-ssl.sample.conf
Normal file
43
nginx-ssl.sample.conf
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
upstream backend {
|
||||||
|
server 127.0.0.1:3000; # Change to the port you specified on lolisafe
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name lolisafe.moe;
|
||||||
|
return 301 https://$server_name$request_uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name lolisafe.moe;
|
||||||
|
|
||||||
|
ssl_certificate /path/to/your/fullchain.pem;
|
||||||
|
ssl_certificate_key /path/to/your/privkey.pem;
|
||||||
|
ssl_trusted_certificate /path/to/your/fullchain.pem;
|
||||||
|
|
||||||
|
client_max_body_size 100M; # Change this to the max file size you want to allow
|
||||||
|
|
||||||
|
location / {
|
||||||
|
add_header Access-Control-Allow-Origin *;
|
||||||
|
root /path/to/your/uploads/folder;
|
||||||
|
try_files $uri @proxy;
|
||||||
|
}
|
||||||
|
|
||||||
|
location @proxy {
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header X-NginX-Proxy true;
|
||||||
|
proxy_pass http://backend;
|
||||||
|
proxy_redirect off;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_redirect off;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user