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

etc_apache2_sites-available_wallabag.j2 626B

123456789101112131415161718192021222324
  1. <VirtualHost *:80>
  2. ServerName {{ wallabag_domain }}
  3. Redirect permanent / https://{{ wallabag_domain }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ wallabag_domain }}
  7. Include /etc/apache2/ssl.conf
  8. DocumentRoot /var/www/wallabag
  9. Options -Indexes
  10. ErrorLog /var/log/apache2/wallabag.info-error_log
  11. CustomLog /var/log/apache2/wallabag.info-access_log common
  12. <Directory /var/www/wallabag>
  13. AllowOverride All
  14. Order allow,deny
  15. allow from all
  16. DirectoryIndex index.php
  17. </Directory>
  18. </VirtualHost>