7 lines
373 B
Bash
Executable File
7 lines
373 B
Bash
Executable File
!/bin/bash
|
|
#Script to reactivate the ipv6-only web server after calling acme or certbot, to communicate via the ipv4/ipv6 proxy
|
|
a2disconf 10-remoteip-proxyproto-off.conf
|
|
a2enconf 10-remoteip-proxyproto.conf
|
|
#Since Apache is only restarted by ISPConfig when the creation of the certificates is successful, we must always restart it as a precaution.
|
|
systemctl reload apache2
|