freshrss-app/apache2.conf

18 lines
349 B
ApacheConf

<VirtualHost *:8000>
DocumentRoot /app/code
ErrorLog /dev/stderr
CustomLog /dev/stdout combined
<Directory /app/code/>
Options +FollowSymLinks
AllowOverride All
Require all granted
<IfModule mod_php7.c>
php_value memory_limit 64m
</IfModule>
</Directory>
</VirtualHost>