mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 07:56:23 +00:00
0b6df9efe4
Summary: * Added 3 new sites to README.md. * Added some new file extensions to filter. * Some additions to nginx sample conf files. Changes such as delete buttons and whatnots for the dashboard were not added.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
upstream backend {
|
|
server 127.0.0.1:9999; # Change to the port you specified on lolisafe
|
|
}
|
|
|
|
map $sent_http_content_type $charset {
|
|
~^text/ utf-8;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name lolisafe.moe;
|
|
server_tokens off;
|
|
|
|
client_max_body_size 100M; # Change this to the max file size you want to allow
|
|
|
|
charset $charset;
|
|
charset_types *;
|
|
|
|
# Uncomment if you are running lolisafe behind CloudFlare.
|
|
# This requires NGINX compiled from source with:
|
|
# --with-http_realip_module
|
|
#include /path/to/lolisafe/real-ip-from-cf;
|
|
|
|
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;
|
|
}
|
|
}
|