fix: fix nginx conf path

This commit is contained in:
DCsunset 2021-09-27 17:32:14 -04:00
parent d314dae648
commit 41c93e8813

View file

@ -14,7 +14,7 @@ error_log /var/log/nginx/error.log warn;
# Uncomment to include files with config snippets into the root context. # Uncomment to include files with config snippets into the root context.
# NOTE: This will be enabled by default in Alpine 3.15. # NOTE: This will be enabled by default in Alpine 3.15.
include /etc/nginx/conf.d/*.conf; #include /etc/nginx/conf.d/*.conf;
events { events {
# The maximum number of simultaneous connections that can be opened by # The maximum number of simultaneous connections that can be opened by
@ -98,5 +98,5 @@ http {
# Includes virtual hosts configs. # Includes virtual hosts configs.
include /etc/nginx/http.d/*.conf; include /etc/nginx/conf.d/*.conf;
} }