Initial commit - forked from the corresponding Smartfront repositories.
This commit is contained in:
14
.templates/nginx/.nginx/_default.conf
Normal file
14
.templates/nginx/.nginx/_default.conf
Normal file
@ -0,0 +1,14 @@
|
||||
# A restrictive default virtualhost configuration.
|
||||
|
||||
server {
|
||||
listen 80 default_server;
|
||||
server_name _;
|
||||
|
||||
root /var/www/html;
|
||||
index index.html index.htm index.nginx-debian.html;
|
||||
|
||||
location / {
|
||||
default_type text/html;
|
||||
return 404 "<span style='font-size: large'>$hostname</span>";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user