forked from extern/egroupware
disable ssl in Nginx config and fix shell script syntax causing interactive passwords not to be used
This commit is contained in:
parent
3d50fe76fb
commit
566bf9545c
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user