mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-05 13:39:23 +01:00
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
|
fi
|
||||||
else
|
else
|
||||||
# for non-interactive install let post_install generate passwords
|
# for non-interactive install let post_install generate passwords
|
||||||
if [ "$DEBIAN_FRONTEND"="noninteractive" ]
|
if [ "$DEBIAN_FRONTEND" = "noninteractive" ]
|
||||||
then
|
then
|
||||||
/usr/share/egroupware/doc/rpm-build/post_install.php 2>&1 | /usr/bin/tee -a $install_log
|
/usr/share/egroupware/doc/rpm-build/post_install.php 2>&1 | /usr/bin/tee -a $install_log
|
||||||
else
|
else
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
server {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
|
|
||||||
# ssl config
|
# ssl config (enable following line plus either include or ssl_certificate* line)
|
||||||
listen 443 ssl http2 default_server;
|
#listen 443 ssl http2 default_server;
|
||||||
include snippets/snakeoil.conf;
|
#include snippets/snakeoil.conf; # requires ssl-certs package installed!
|
||||||
# concatenate private key, certificate and intermediate certs to /etc/ssl/private/certificate.pem
|
# concatenate private key, certificate and intermediate certs to /etc/ssl/private/certificate.pem
|
||||||
#ssl_certificate /etc/ssl/private/certificate.pem;
|
#ssl_certificate /etc/ssl/private/certificate.pem;
|
||||||
#ssl_certificate_key /etc/ssl/private/certificate.pem;
|
#ssl_certificate_key /etc/ssl/private/certificate.pem;
|
||||||
|
Loading…
Reference in New Issue
Block a user