소스 검색

Merge pull request #49 from techraf/restore-enabled-sites-default-behaviour

Restore nginx's default search pattern for sites-enabled
Jeff Geerling 9 년 전
부모
커밋
90aeacbdd3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      templates/nginx.conf.j2

+ 1 - 1
templates/nginx.conf.j2

@@ -57,6 +57,6 @@ http {
 
     include {{ nginx_conf_path }}/*.conf;
 {% if nginx_conf_path != nginx_vhost_path %}
-    include {{ nginx_vhost_path }}/*.conf;
+    include {{ nginx_vhost_path }}/*;
 {% endif %}
 }