Explorar el Código

fix(resources): remove trailing `.conf` in default nginx stream block

Fix #444
PeterWang-dev hace 9 meses
padre
commit
7c21aa2377
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      resources/docker/nginx.conf

+ 1 - 1
resources/docker/nginx.conf

@@ -10,7 +10,7 @@ events {
 }
 
 stream {
-    include /etc/nginx/streams-enabled/*.conf;
+    include /etc/nginx/streams-enabled/*;
 }
 
 http {