updated gitea nginx config to allow larger files.
This commit is contained in:
parent
74e7ac1d4c
commit
cd1672bf6b
|
@ -1,7 +1,9 @@
|
|||
server {
|
||||
server_name git.roysathome.net;
|
||||
client_max_body_size 100M;
|
||||
location / {
|
||||
set $backend http://127.0.0.1:3000;
|
||||
client_max_body_size 100M;
|
||||
proxy_pass $backend;
|
||||
proxy_set_header Host git.roysathome.net; #$host;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
|
|
Loading…
Reference in New Issue