cdn/nginx.conf

14 lines
196 B
Nginx Configuration File
Raw Normal View History

2025-01-23 13:30:37 +01:00
server {
listen 80;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
error_page 404 = @empty404;
location @empty404 {
return 404;
}
}