From fec99e6fad54556ce6528624d7658e231a2b91a0 Mon Sep 17 00:00:00 2001 From: Andras Kovi Date: Wed, 21 Feb 2018 17:02:48 +0100 Subject: [PATCH] Make default listener non-ssl It greatly helps first steps if the default configuration works out of box for locally running, non-authenticated Mistrals, --- scripts/cloudflow.nginx.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/cloudflow.nginx.conf b/scripts/cloudflow.nginx.conf index 17ae01d..5870b68 100644 --- a/scripts/cloudflow.nginx.conf +++ b/scripts/cloudflow.nginx.conf @@ -1,12 +1,14 @@ server { - listen [::]:8000 ssl ipv6only=off; + listen [::]:8000 ipv6only=off; + server_name localhost; # to enable https, uncomment the following lines, and point to your cert and key files # #ssl_certificate /etc/nginx/ssl/nginx.crt; #ssl_certificate_key /etc/nginx/ssl/nginx.key; - + #listen [::]:8001 ssl ipv6only=off; + # For custom log, uncomment the following line and set the desired path of the log file # #access_log /var/log/nginx/cloudflow.access.log main;