You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
377 B
14 lines
377 B
3 years ago
|
server {
|
||
|
# this server is defined as default server
|
||
|
# therfore it catches all domains not used in other configurations
|
||
|
listen 8000 default;
|
||
|
server_name _;
|
||
|
add_header X-Clacks-Overhead "GNU Terry Pratchett";
|
||
|
add_header Permissions-Policy interest-cohort=();
|
||
|
|
||
|
# every request returns just a 404 error
|
||
|
location / {
|
||
|
root /data;
|
||
|
}
|
||
|
|
||
|
}
|