42 lines
1.0 KiB
Nginx Configuration File
42 lines
1.0 KiB
Nginx Configuration File
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
# HTTPS server configuration
|
||
|
server {
|
||
|
listen 443 ssl;
|
||
|
server_name translator.dhbw.flokaiser.com;
|
||
|
|
||
|
ssl_certificate /etc/nginx/certs/cert.pem;
|
||
|
ssl_certificate_key /etc/nginx/certs/key.pem;
|
||
|
|
||
|
location / {
|
||
|
# Forward requests to port 80
|
||
|
proxy_pass http://frontend: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 https;
|
||
|
}
|
||
|
|
||
|
location /api {
|
||
|
# Forward requests to port 80
|
||
|
proxy_pass http://backend:80/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 https;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# HTTP server configuration
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name translator.dhbw.flokaiser.com;
|
||
|
|
||
|
return 301 https://$server_name$request_uri;
|
||
|
}
|
||
|
}
|