|
|
@@ -0,0 +1,46 @@
|
|
|
+server {
|
|
|
+ listen %ip%:%proxy_ssl_port%;
|
|
|
+ server_name %domain_idn% %alias_idn%;
|
|
|
+ ssl on;
|
|
|
+ ssl_certificate %ssl_pem%;
|
|
|
+ ssl_certificate_key %ssl_key%;
|
|
|
+ error_log /var/log/httpd/domains/%domain%.error.log error;
|
|
|
+
|
|
|
+ location / {
|
|
|
+ proxy_pass http://%ip%:%web_port%;
|
|
|
+
|
|
|
+ proxy_cache cache;
|
|
|
+ proxy_cache_valid 10m;
|
|
|
+ proxy_cache_valid 404 1m;
|
|
|
+ proxy_no_cache $no_cache;
|
|
|
+ proxy_cache_bypass $no_cache;
|
|
|
+ proxy_cache_bypass $cookie_session $http_x_update;
|
|
|
+
|
|
|
+ location ~* ^.+\.(%proxy_extentions%)$ {
|
|
|
+ proxy_cache off;
|
|
|
+ root %docroot%;
|
|
|
+ access_log /var/log/httpd/domains/%domain%.log combined;
|
|
|
+ access_log /var/log/httpd/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 ~ /\.svn/ {return 404;}
|
|
|
+ location ~ /\.git/ {return 404;}
|
|
|
+ location ~ /\.hg/ {return 404;}
|
|
|
+ location ~ /\.bzr/ {return 404;}
|
|
|
+
|
|
|
+ disable_symlinks if_not_owner from=%home%/%user%;
|
|
|
+
|
|
|
+ include %home%/%user%/conf/nginx.%domain%.conf*;
|
|
|
+}
|