Files
HIS/nginx_user_conf.d/hospital.conf
m.imanpour 3d96371492
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
directory structure built
2025-12-10 00:58:05 +03:30

12 lines
343 B
Plaintext

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;
}
}