暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

etc_apache2_sites-available_commento.j2 660B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. ServerName {{ commento_subdomain }}.{{ item.name }}
  3. Redirect temp / https://{{ commento_subdomain }}.{{ item.name }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ commento_subdomain }}.{{ 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:{{ commento_internal_port }}/
  15. ProxyPassReverse / http://localhost:{{ commento_internal_port }}/
  16. </VirtualHost>