disable ssl in Nginx config and fix shell script syntax causing interactive passwords not to be used

This commit is contained in:
Ralf Becker 2017-11-14 16:36:47 +01:00
parent 3d50fe76fb
commit 566bf9545c
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ then
fi
else
# for non-interactive install let post_install generate passwords
if [ "$DEBIAN_FRONTEND"="noninteractive" ]
if [ "$DEBIAN_FRONTEND" = "noninteractive" ]
then
/usr/share/egroupware/doc/rpm-build/post_install.php 2>&1 | /usr/bin/tee -a $install_log
else

View File

@ -3,9 +3,9 @@
server {
listen 80 default_server;
# ssl config
listen 443 ssl http2 default_server;
include snippets/snakeoil.conf;
# ssl config (enable following line plus either include or ssl_certificate* line)
#listen 443 ssl http2 default_server;
#include snippets/snakeoil.conf; # requires ssl-certs package installed!
# concatenate private key, certificate and intermediate certs to /etc/ssl/private/certificate.pem
#ssl_certificate /etc/ssl/private/certificate.pem;
#ssl_certificate_key /etc/ssl/private/certificate.pem;