diff options
Diffstat (limited to '.github')
-rwxr-xr-x | .github/prepare_debian.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/prepare_debian.sh b/.github/prepare_debian.sh index 3693acc..a74f346 100755 --- a/.github/prepare_debian.sh +++ b/.github/prepare_debian.sh | |||
@@ -41,8 +41,12 @@ cat /etc/hosts | |||
41 | # apache | 41 | # apache |
42 | a2enmod ssl | 42 | a2enmod ssl |
43 | a2ensite default-ssl | 43 | a2ensite default-ssl |
44 | make-ssl-cert generate-default-snakeoil --force-overwrite | 44 | # replace snakeoil certs with openssl generated ones as the make-ssl-cert ones |
45 | service apache2 start | 45 | # seems to cause problems with our plugins |
46 | rm /etc/ssl/certs/ssl-cert-snakeoil.pem | ||
47 | rm /etc/ssl/private/ssl-cert-snakeoil.key | ||
48 | openssl req -nodes -newkey rsa:2048 -x509 -sha256 -days 365 -nodes -keyout /etc/ssl/private/ssl-cert-snakeoil.key -out /etc/ssl/certs/ssl-cert-snakeoil.pem -subj "/C=GB/ST=London/L=London/O=Global Security/OU=IT Department/CN=$(hostname)" | ||
49 | service apache2 restart | ||
46 | 50 | ||
47 | # squid | 51 | # squid |
48 | cp tools/squid.conf /etc/squid/squid.conf | 52 | cp tools/squid.conf /etc/squid/squid.conf |