13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
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;
|
|
}
|
|
}
|
|
|