No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

apache2-vhost.conf.j2 560B

hace 3 años
hace 7 años
hace 3 años
hace 7 años
hace 3 años
hace 7 años
hace 3 años
hace 7 años
hace 3 años
hace 7 años
hace 3 años
123456789101112131415161718192021
  1. {{ ansible_managed | comment }}
  2. <VirtualHost *:443>
  3. ServerName {{postfixadmin_server_name}}
  4. ErrorLog ${APACHE_LOG_DIR}/error.log
  5. CustomLog ${APACHE_LOG_DIR}/access.log combined
  6. SSLEngine on
  7. SSLCertificateFile "{{postfixadmin_certificate_fullchain_file}}"
  8. SSLCertificateKeyFile "{{postfixadmin_certificate_private_key_file}}"
  9. DocumentRoot /var/www/default/
  10. <Directory "/var/www/default/">
  11. Options -Indexes
  12. </Directory>
  13. Alias /postfixadmin /usr/share/postfixadmin/public
  14. Redirect /postfixadmin/public /postfixadmin
  15. </VirtualHost>