OPC # 0003: Move Gitea out of OPC Aspire Orchestration

This commit is contained in:
amadzarak
2026-04-25 22:51:03 -04:00
parent 5009f6e688
commit 7e360749b9
4 changed files with 49 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
server {
listen 443 ssl;
server_name opc.clarity.test;
ssl_certificate /etc/nginx/certs/clarity.test.crt;
ssl_certificate_key /etc/nginx/certs/clarity.test.key;
location / {
proxy_pass http://gitea:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}