first commit

This commit is contained in:
Digital Studium
2023-03-25 12:07:14 +00:00
commit a5a50d0e02
8 changed files with 89 additions and 0 deletions

12
git.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
server_name GITEA_HOSTNAME;
listen 80;
location / {
proxy_pass http://127.0.0.1:5000/;
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
}
}