Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

etc_apache2_sites-available_fathom.j2 600B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. ServerName fathom.{{ item.name }}
  3. Redirect permanent / https://{{ item.name }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName fathom.{{ item.name }}
  7. SSLEngine On
  8. DocumentRoot "{{ item.doc_root }}"
  9. DirectoryIndex index.html
  10. Options -Indexes
  11. HostnameLookups Off
  12. ProxyRequests On
  13. ProxyPreserveHost On
  14. ProxyPass / http://localhost:{{ fathom_internal_port }}/
  15. ProxyPassReverse / http://localhost:{{ fathom_internal_port }}/
  16. </VirtualHost>