mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-22 05:20:28 -08:00
37 lines
1.0 KiB
Smarty
37 lines
1.0 KiB
Smarty
server {
|
|
listen %ip%:%proxy_port%;
|
|
server_name %domain_idn% %alias_idn%;
|
|
error_log /var/log/%web_system%/domains/%domain%.error.log error;
|
|
|
|
location / {
|
|
proxy_pass http://%ip%:%web_port%;
|
|
location ~* ^.+\.(%proxy_extentions%)$ {
|
|
root %docroot%;
|
|
access_log /var/log/%web_system%/domains/%domain%.log combined;
|
|
access_log /var/log/%web_system%/domains/%domain%.bytes bytes;
|
|
expires max;
|
|
# try_files $uri @fallback;
|
|
}
|
|
}
|
|
|
|
location /error/ {
|
|
alias %home%/%user%/web/%domain%/document_errors/;
|
|
}
|
|
|
|
location @fallback {
|
|
proxy_pass http://%ip%:%web_port%;
|
|
}
|
|
|
|
location ~ /\.ht {return 404;}
|
|
location ~ /\.env {return 404;}
|
|
location ~ /\.svn/ {return 404;}
|
|
location ~ /\.git/ {return 404;}
|
|
location ~ /\.hg/ {return 404;}
|
|
location ~ /\.bzr/ {return 404;}
|
|
|
|
disable_symlinks if_not_owner from=%docroot%;
|
|
|
|
include %home%/%user%/conf/web/nginx.%domain%.conf*;
|
|
}
|
|
|