Files
jinniu-daikuan/docker/apache-vhost.conf
T
梁铭洋andCursor dcde552657 Add Docker one-click deploy and data migration docs.
Enable PHP 8.2 + Apache compose stack with persistent data/uploads volumes and PhpSpreadsheet for xlsx import/export.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-29 15:00:56 +08:00

20 lines
551 B
Plaintext

<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/public
<Directory /var/www/html/public>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php
</Directory>
# 禁止直接访问业务数据与源码目录
<DirectoryMatch "^/var/www/html/(app|data|uploads|vendor)">
Require all denied
</DirectoryMatch>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>