mirror of
https://github.com/linuxserver/docker-freshrss.git
synced 2026-02-20 02:14:47 +08:00
16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin me@mydomain.com
|
|
DocumentRoot /config/freshrss
|
|
DirectoryIndex index.html index.php
|
|
<Directory />
|
|
</Directory>
|
|
<Directory /config/freshrss>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost>
|
|
|