You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
501 B
Plaintext
32 lines
501 B
Plaintext
8 years ago
|
server {
|
||
|
listen 80 default_server;
|
||
|
listen [::]:80 default_server;
|
||
|
|
||
|
#root /var/www/html;
|
||
|
root /media/floppy/noweb;
|
||
|
|
||
|
# Add index.php to the list if you are using PHP
|
||
|
index index.html index.htm index.nginx-debian.html;
|
||
|
|
||
|
server_name _;
|
||
|
|
||
|
error_page 404 /insert.html;
|
||
|
|
||
|
location = /insert.html {
|
||
|
root /var/www/static;
|
||
|
internal;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
|
||
|
location /static {
|
||
|
alias /var/www/static;
|
||
|
autoindex on;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|