This commit is contained in:
2022-04-18 11:21:20 +08:00
commit 45a7af638f
210 changed files with 8997 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 80;
server_name git.xxxx.com;
access_log off;
error_log /var/log/nginx/error-gitea.log;
location / {
proxy_pass http://unix:/socket/gitea;
client_max_body_size 1024m;
client_body_buffer_size 1024m;
}
}