Browse Source

Update sendy.stpl

Alexandros Ioannides 5 years ago
parent
commit
5d133e5c60
1 changed files with 5 additions and 4 deletions
  1. 5 4
      install/deb/templates/web/nginx/php-fpm/sendy.stpl

+ 5 - 4
install/deb/templates/web/nginx/php-fpm/sendy.stpl

@@ -6,16 +6,17 @@
 server {
     listen      %ip%:%web_ssl_port% ssl http2;
     server_name %domain_idn% %alias_idn%;
-    ssl_certificate      %ssl_pem%;
-    ssl_certificate_key  %ssl_key%;
-    ssl_stapling on;
-    ssl_stapling_verify on;
     root        %docroot%;
     index       index.php index.html index.htm;
     access_log  /var/log/nginx/domains/%domain%.log combined;
     access_log  /var/log/nginx/domains/%domain%.bytes bytes;
     error_log   /var/log/nginx/domains/%domain%.error.log error;
 
+    ssl_certificate      %ssl_pem%;
+    ssl_certificate_key  %ssl_key%;
+    ssl_stapling on;
+    ssl_stapling_verify on;
+
     include %home%/%user%/conf/web/%domain%/nginx.hsts.conf*;
 
     location = /favicon.ico {