mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
add server block for catching non-domain requests
This commit is contained in:
parent
4eeb0d70cc
commit
82a6fb610d
@ -23,6 +23,12 @@ http {
|
|||||||
"~^text/html" "default-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'";
|
"~^text/html" "default-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
# 404 for any request that does match the server names defined below
|
||||||
|
listen 80;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
autoindex on;
|
autoindex on;
|
||||||
|
Loading…
Reference in New Issue
Block a user