nginx/http/gitea.conf

10 lines
176 B
Plaintext
Raw Normal View History

2023-09-10 06:04:55 +00:00
server {
listen 443 ssl http2;
server_name git.tronnet.net;
2023-12-12 03:05:00 +00:00
include snippets/ssl-acme.conf;
2023-09-10 06:04:55 +00:00
location / {
proxy_pass http://gitea.dmz:3000;
proxy_redirect default;
}
}