Are0h 2020-10-01 23:56:52 +02:00
parent 57d775802b
commit 3985d8dc1e

@ -25,6 +25,7 @@ From here there are two commands that need to run to create the scripts and css
server {
listen 80;
server_name yourcoolassdomain.com;
client_max_body_size 20M //Change to whatever to limit/increase file upload size
location / {
proxy_pass https://127.0.0.1:2314;
proxy_http_version 1.1;
@ -43,6 +44,7 @@ server {
ProxyPreserveHost On
ProxyPass "/" "http://127.0.0.1:2314/"
ProxyPassReverse "/" "http://127.0.0.1:2314"
LimitRequestBody 16384
</VirtualHost>
```