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