mirror of
https://github.com/mr-vercetti/mr.vercetti.cc.git
synced 2025-01-19 09:15:35 +01:00
13 lines
229 B
Nginx Configuration File
13 lines
229 B
Nginx Configuration File
|
events { }
|
||
|
http {
|
||
|
include /etc/nginx/mime.types;
|
||
|
server_tokens off;
|
||
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
root /usr/share/nginx/html;
|
||
|
error_page 404 /404.html;
|
||
|
default_type application/octet-stream;
|
||
|
}
|
||
|
}
|