service-nextcloud/docker-entry.sh

18 lines
360 B
Bash
Raw Normal View History

2018-12-25 10:40:50 +00:00
#!/bin/sh
# Add htaccess configuration
cat >> /var/www/html/.htaccess <<MARK
<IfModule mod_proxy.c>
ProxyPass /sites/ http://localhost/index.php/apps/cms_pico/pico/
ProxyPassReverse /sites/ http://localhost/index.php/apps/cms_pico/pico/
</IfModule>
MARK
# Enable apache modules
2018-12-25 11:23:21 +00:00
a2enmod proxy proxy_http rewrite
2018-12-25 10:40:50 +00:00
# Run service
cron
exec apache2-foreground