infrastructure/ansible/roles/dokku/files/nginx.conf

13 lines
313 B
Nginx Configuration File
Raw Normal View History

# Block requests which don't have an explicit handler
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
access_log off;
return 418;
2023-10-01 16:25:20 +01:00
}
# Load configuration files for the default server block (this directory is used by dokku).
include /etc/nginx/conf.d/*.conf;