Switch java-deptools to https

This commit is contained in:
Mikolaj Izdebski 2018-03-06 04:21:53 +00:00
parent b58dfc3086
commit 6407f2e55f
3 changed files with 27 additions and 2 deletions

View file

@ -30,4 +30,5 @@
roles:
- basessh
- certbot
- java-deptools

View file

@ -1,8 +1,24 @@
ServerName java-deptools.fedorainfracloud.org
<Proxy *>
AddDefaultCharset off
Order deny,allow
Allow from all
</Proxy>
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/java-deptools.fedorainfracloud.org/fullchain.pem
SSLHonorCipherOrder On
SSLCipherSuite RC4-SHA:AES128-SHA:ALL:!ADH:!EXP:!LOW:!MD5:!SSLV2:!NULL
SSLProtocol ALL -SSLv2
ProxyPass / http://localhost:9000/
ProxyPassReverse / http://localhost:9000/
</VirtualHost>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]

View file

@ -7,6 +7,7 @@
package: name={{ item }} state=present
with_items:
- httpd
- mod_ssl
- postgresql-server
- postgresql
- java-deptools
@ -65,6 +66,13 @@
tags:
- service
- name: Obtain letsencrypt certificate
shell: certbot certonly -n --standalone --agree-tos -m sysadmin-koschei-members@fedoraproject.org -d {{ inventory_hostname }}
args:
creates: /etc/letsencrypt/live/{{ inventory_hostname }}/fullchain.pem
tags:
- config
- name: Install proxy config
copy: src=proxy.conf dest=/etc/httpd/conf.d/java-deptools-proxy.conf