skinview3d/misc/nginx_vhost

12 lines
147 B
Plaintext
Raw Normal View History

2015-09-29 18:52:18 +02:00
server {
listen 80;
root /var/www;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ /index.php;
}
}