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

etc_apache2_sites-available_gitea.j2 587B

1234567891011121314151617181920
  1. <VirtualHost *:80>
  2. ServerName {{ gitea_subdomain }}.{{ item.name }}
  3. Redirect permanent / https://{{ item.name }}/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName {{ gitea_subdomain }}.{{ item.name }}
  7. SSLEngine On
  8. DocumentRoot "{{ item.doc_root }}"
  9. DirectoryIndex index.html
  10. Options -Indexes
  11. HostnameLookups Off
  12. ProxyRequests Off
  13. ProxyPreserveHost On
  14. ProxyPass / http://localhost:3000/
  15. ProxyPassReverse / http://localhost:3000/
  16. </VirtualHost>