User:Simon/Trim4/prototypes/nginx configuration
nginx is a web server software that the bootleg library runs on. This configuration allows maximum uploads of 100mb:
server { listen 80 default_server; listen [::]:80 default_server; server_name _; location /bootleglibrary { auth_basic "ヽ(°〇°)ノ"; auth_basic_user_file /etc/nginx/htpasswd; client_max_body_size 100M; proxy_bind $server_addr; proxy_pass http://127.0.0.1:20190; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Scheme $scheme; proxy_set_header X-Script-Name /bootleglibrary; } }