29 lines
793 B
Nginx Configuration File
29 lines
793 B
Nginx Configuration File
# /etc/nginx/conf.d/default.conf
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
|
|
# ACME HTTP-01 Challenge (Certbot)
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
default_type "text/plain; charset=utf-8";
|
|
}
|
|
|
|
# PortalUI root
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# === API forwarding for Auth-Service ===
|
|
location /api/ {
|
|
proxy_pass http://appserverauth:3000/api/;
|
|
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;
|
|
}
|
|
|
|
# === SPA routing (Portal UI) ===
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |