mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
Create http2.stpl
Use http2 for faster loading, this requires https. Create http2.tpl No http2 support when HTTPS is not active... HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled). HTTP2 support Adds HTTP2 support for NGINX when using the http2 nginx template (only when HTTPS is enabled).
This commit is contained in:
parent
422e60f396
commit
eb7bdda8ad
30 changed files with 1033 additions and 0 deletions
33
install/rhel/7/templates/web/nginx/http2.tpl
Normal file
33
install/rhel/7/templates/web/nginx/http2.tpl
Normal file
|
@ -0,0 +1,33 @@
|
|||
server {
|
||||
listen %ip%:%proxy_port%;
|
||||
server_name %domain_idn% %alias_idn%;
|
||||
error_log /var/log/httpd/domains/%domain%.error.log error;
|
||||
|
||||
location / {
|
||||
proxy_pass http://%ip%:%web_port%;
|
||||
location ~* ^.+\.(%proxy_extentions%)$ {
|
||||
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;}
|
||||
|
||||
include %home%/%user%/conf/web/nginx.%domain%.conf*;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue