wip
This commit is contained in:
parent
2622b6833f
commit
0d734655fe
3 changed files with 9 additions and 5 deletions
|
@ -11,8 +11,15 @@ http {
|
||||||
default_type application/octet-stream;
|
default_type application/octet-stream;
|
||||||
error_log /var/log/nginx/error.log;
|
error_log /var/log/nginx/error.log;
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
include /etc/nginx/sites/*;
|
|
||||||
sendfile on;
|
sendfile on;
|
||||||
server_names_hash_bucket_size 128;
|
server_names_hash_bucket_size 128;
|
||||||
tcp_nopush on;
|
tcp_nopush on;
|
||||||
|
|
||||||
|
% if node.has_bundle('php'):
|
||||||
|
upstream php-handler {
|
||||||
|
server unix:/var/run/php/php${node.metadata.get('php/version')}-fpm.sock;
|
||||||
|
}
|
||||||
|
|
||||||
|
% endif
|
||||||
|
include /etc/nginx/sites/*;
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ directories = {
|
||||||
|
|
||||||
files = {
|
files = {
|
||||||
'/etc/nginx/nginx.conf': {
|
'/etc/nginx/nginx.conf': {
|
||||||
|
'content_type': 'mako',
|
||||||
'triggers': {
|
'triggers': {
|
||||||
'svc_systemd:nginx:restart',
|
'svc_systemd:nginx:restart',
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
upstream php-handler {
|
|
||||||
server unix:/var/run/php/php7.3-fpm.sock;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2;
|
listen [::]:443 ssl http2;
|
||||||
|
|
Loading…
Reference in a new issue