mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-17 07:49:22 +08:00
31 lines
777 B
Plaintext
31 lines
777 B
Plaintext
|
#######################################
|
||
|
# Vhost
|
||
|
#######################################
|
||
|
|
||
|
<VirtualHost *:80>
|
||
|
ServerName docker.vm
|
||
|
ServerAlias *.vm
|
||
|
DocumentRoot "/app/api/public"
|
||
|
<Directory /app/api/public>
|
||
|
Options FollowSymLinks MultiViews
|
||
|
AllowOverride All
|
||
|
Order allow,deny
|
||
|
allow from all
|
||
|
</Directory>
|
||
|
</VirtualHost>
|
||
|
|
||
|
<VirtualHost *:443>
|
||
|
ServerName docker.vm
|
||
|
ServerAlias *.vm
|
||
|
DocumentRoot "/app/api/public"
|
||
|
<Directory /app/api/public>
|
||
|
Options FollowSymLinks MultiViews
|
||
|
AllowOverride All
|
||
|
Order allow,deny
|
||
|
allow from all
|
||
|
</Directory>
|
||
|
#SSLEngine on
|
||
|
#SSLCertificateFile /app/ssl/server.crt
|
||
|
#SSLCertificateKeyFile /app/ssl/server.key
|
||
|
</VirtualHost>
|