diff host/startup/nginx/nginx.acme_setup.conf.luan @ 2083:39d4215259ec ssltesting

tabs instead of spaces
author Violet7
date Tue, 09 Dec 2025 22:12:51 -0800
parents d7de1f976c1d
children
line wrap: on
line diff
--- a/host/startup/nginx/nginx.acme_setup.conf.luan	Tue Dec 09 17:53:16 2025 -0800
+++ b/host/startup/nginx/nginx.acme_setup.conf.luan	Tue Dec 09 22:12:51 2025 -0800
@@ -12,19 +12,19 @@
 		error_log <%=rootDir%>/error.log;
 		access_log <%=rootDir%>/access.log;
 
-    # this directive should be included in a per-site
-    # nginx conf. this only exists for nginx.ssl.conf
-    # as far as I am aware. Currently, this will cause
-    # conflict with the server block defined in that
-    # file, so this file should be deleted when the
-    # initial setup is finished, and this directive
-    # should be added to that file instead.
+		# this directive should be included in a per-site
+		# nginx conf. this only exists for nginx.ssl.conf
+		# as far as I am aware. Currently, this will cause
+		# conflict with the server block defined in that
+		# file, so this file should be deleted when the
+		# initial setup is finished, and this directive
+		# should be added to that file instead.
 		location /.well-known/acme-challenge/ {
-        root <%=rootDir%>;
-        try_files $uri $uri/ =404;
+				root <%=rootDir%>;
+				try_files $uri $uri/ =404;
 		}
 
-    include nginx.default.conf;
+		include nginx.default.conf;
 
 	}