directory structure built
Some checks failed
Build and Deploy Angular App (Artifacts, Gitea-safe) / build (push) Failing after 13s
Build and Deploy Angular App (Artifacts, Gitea-safe) / scan (push) Has been skipped
Build and Deploy Angular App (Artifacts, Gitea-safe) / deploy (push) Has been skipped

This commit is contained in:
m.imanpour
2025-12-10 00:58:05 +03:30
parent 8f6252195d
commit 3d96371492
5 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
server {
listen 80;
server_name hospital.networkwizard.xyz;
location / {
proxy_pass http://hospital-app:80;
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;
}
}