forked from exozyme/nginx
12 lines
234 B
Text
12 lines
234 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name git.exozy.me;
|
|
|
|
include conf.d/ssl;
|
|
|
|
location / {
|
|
proxy_pass http://unix:/run/gitea/gitea.sock;
|
|
client_max_body_size 1G;
|
|
}
|
|
}
|