Skip to content

Commit

Permalink
fix nginx config
Browse files Browse the repository at this point in the history
  • Loading branch information
bazilio91 committed Oct 5, 2016
1 parent 3602223 commit 9c1cc18
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ http {

ssl_dhparam /etc/nginx/dhparam/dhparam.pem;

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/conf.d/*.upstream.conf;
include /etc/nginx/conf.d/*.http.conf;
include /etc/nginx/conf.d/*.http2.conf;
include /etc/nginx/conf.d/default.conf;
include /etc/nginx/sites-enabled/*.conf;
}

stream {
include /etc/nginx/conf.d/*.upstream.conf;
include /etc/nginx/conf.d/*.tcp.conf;
include /etc/nginx/conf.d/*.udp.conf;
}

0 comments on commit 9c1cc18

Please sign in to comment.