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.
25 lines
432 B
Nginx Configuration File
25 lines
432 B
Nginx Configuration File
5 months ago
|
server {
|
||
|
listen 80;
|
||
|
server_name your_domain.com;
|
||
|
|
||
|
root /var/www;
|
||
|
|
||
|
# Main location block
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
|
||
|
# User directories
|
||
|
location ~ ^/~(.+?)(/.*)?$ {
|
||
|
alias /var/www/$1$2;
|
||
|
autoindex on;
|
||
|
index index.html;
|
||
|
try_files $uri $uri/ /~$1/index.html;
|
||
|
}
|
||
|
|
||
|
error_page 404 /404.html;
|
||
|
location = /404.html {
|
||
|
internal;
|
||
|
}
|
||
|
}
|