Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

etc_apache2_sites-available_cgit.j2 820B

12345678910111213141516171819202122232425262728
  1. <VirtualHost *:80>
  2. ServerName {{ cgit_domain }}
  3. Redirect permanent / https://{{ cgit_domain }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ cgit_domain }}
  7. Include /etc/apache2/ssl.conf
  8. DocumentRoot /var/www/htdocs/cgit/
  9. <Directory "/var/www/htdocs/cgit/">
  10. AllowOverride None
  11. Options +ExecCGI
  12. Order allow,deny
  13. Allow from all
  14. </Directory>
  15. Alias /cgit.png /var/www/htdocs/cgit/cgit.png
  16. Alias /cgit.css /var/www/htdocs/cgit/cgit.css
  17. Alias /favicon.ico /var/www/htdocs/cgit/favicon.ico
  18. Alias /robots.txt /var/www/htdocs/cgit/robots.txt
  19. ScriptAlias / /var/www/htdocs/cgit/cgit.cgi/
  20. CustomLog /var/log/apache2/cgit_access.log combined
  21. ErrorLog /var/log/apache2/cgit_error.log
  22. </VirtualHost>