20 lines
701 B
Plaintext
20 lines
701 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html/public
|
|
|
|
# ── Webhook deploy (Gitea) — proxy ke container webhook ───────────────────
|
|
# https://myansuran.mbip.my/hooks/myansuran-deploy → myansuran-webhook:9000
|
|
ProxyPreserveHost On
|
|
ProxyPass /hooks/ http://myansuran-webhook:9000/hooks/
|
|
ProxyPassReverse /hooks/ http://myansuran-webhook:9000/hooks/
|
|
|
|
<Directory /var/www/html/public>
|
|
AllowOverride All
|
|
Require all granted
|
|
Options -Indexes
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|