Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / other / nginx-virtual-host.twig
index 110acbbe8d142fc315e6615733dd261cbb0623a9..e40d39ddea844f51567ffc09f8f7f85474cb09a5 100644 (file)
@@ -8,7 +8,7 @@
 server {
     server_name {{ server_name }};
     root {{ docroot }};
-    
+
     client_max_body_size 16m;
 
     location = /favicon.ico {
@@ -37,7 +37,7 @@ server {
     }
 
 {% endif %}
-    # Allow "Well-Known URIs" as per RFC 5785
+    # Allow "Well-Known URIs" as per RFC 5785.
     location ~* ^/.well-known/ {
         allow all;
     }
@@ -52,7 +52,7 @@ server {
     location / {
         try_files $uri /index.php?$query_string;
     }
-    
+
     location @rewrite {
         rewrite ^/(.*)$ /index.php?q=$1;
     }