20 lines
556 B
Plaintext
20 lines
556 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
server_name angular.arti24.eu;
|
|
server_tokens off;
|
|
include snippets/ssl-params.conf;
|
|
include snippets/security-headers.conf;
|
|
|
|
location / {
|
|
limit_req zone=ip_limit burst=20 nodelay;
|
|
proxy_pass http://arti24-container:3003;
|
|
include snippets/proxy-headers.conf;
|
|
include snippets/proxy-optimization.conf;
|
|
}
|
|
|
|
# Angular SPA fallback
|
|
location ~ ^/(?!.*\.(js|css|png|jpg|jpeg|gif|ico|svg|woff2|ttf|eot)) {
|
|
try_files \$uri \$uri/ /index.html;
|
|
}
|
|
}
|