first feasability of event management feature
This commit is contained in:
10
nginx.conf
10
nginx.conf
@@ -7,6 +7,16 @@ http {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
# Optional: HTTP auf HTTPS weiterleiten
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
server {
|
||||
listen 443 ssl;
|
||||
server_name _;
|
||||
|
||||
ssl_certificate /etc/nginx/certs/dev.crt;
|
||||
ssl_certificate_key /etc/nginx/certs/dev.key;
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://infoscreen-api:8000/api/;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user