address Provision error #17

This commit is contained in:
clime 2018-01-31 21:35:03 +01:00
parent b3a273d816
commit d597b3fea3
2 changed files with 14 additions and 0 deletions

4
Vagrantfile vendored
View file

@ -62,6 +62,10 @@ Vagrant.configure(2) do |config|
inline: "mv /tmp/pkgs-files/lookaside-upload.conf /etc/httpd/conf.d/dist-git/ && restorecon -R /etc/httpd/conf.d/dist-git/",
run: "always"
distgit.vm.provision "shell",
inline: "mv /tmp/pkgs-files/ssl.conf /etc/httpd/conf.d/ssl.conf && restorecon -R /etc/httpd/conf.d/ssl.conf",
run: "always"
distgit.vm.provision "shell",
inline: "systemctl enable dist-git.socket && systemctl restart dist-git.socket",
run: "always"

View file

@ -0,0 +1,10 @@
# extracted from /etc/httpd/conf.d/ssl.conf for httpd-2.4.29
# https://github.com/release-engineering/dist-git/issues/17
Listen 443 https
SSLPassPhraseDialog exec:/usr/libexec/httpd-ssl-pass-dialog
SSLSessionCache shmcb:/run/httpd/sslcache(512000)
SSLSessionCacheTimeout 300
SSLRandomSeed startup file:/dev/urandom 256
SSLRandomSeed connect builtin
SSLCryptoDevice builtin