説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

etc_apache2_sites-available_ldap.j2 541B

12345678910111213141516
  1. <VirtualHost *:80>
  2. ServerName {{ ldap_subdomain }}.{{ item.name }}
  3. Redirect temp / https://{{ ldap_subdomain }}.{{ item.name }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ ldap_subdomain }}.{{ item.name }}
  7. SSLEngine On
  8. DocumentRoot /usr/share/fusiondirectory/html
  9. Options -Indexes
  10. LogLevel warn
  11. ErrorLog /var/log/apache2/ldap.info-error_log
  12. CustomLog /var/log/apache2/ldap.info-access_log common
  13. </VirtualHost>