Files
EventHubBack/docker/fallback/default.conf

13 lines
198 B
Plaintext

server {
listen 80 default_server;
root /usr/share/nginx/html;
location / {
return 503;
}
error_page 503 /503.html;
location = /503.html {
internal;
}
}