Git history was lost when the previous Gitea instance was wiped and reinstalled due to an unresolved corruption bug — this commit is the last known-good file content, exported before the reinstall. Prior commit history is not recoverable through this path.
14 lines
367 B
Django/Jinja
14 lines
367 B
Django/Jinja
<VirtualHost *:80>
|
|
ServerName {{ domain_name }}
|
|
DocumentRoot /var/www/{{ domain_name }}
|
|
|
|
<Directory /var/www/{{ domain_name }}>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|