mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 15:02:54 +00:00
address Provision error #17
This commit is contained in:
parent
b3a273d816
commit
d597b3fea3
2 changed files with 14 additions and 0 deletions
4
Vagrantfile
vendored
4
Vagrantfile
vendored
|
@ -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"
|
||||
|
|
10
beaker-tests/pkgs-files/ssl.conf
Normal file
10
beaker-tests/pkgs-files/ssl.conf
Normal 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
|
Loading…
Add table
Reference in a new issue