Php_support in Domoticz server?
Posted: Saturday 23 April 2016 14:44
Hello
Is it planning the support for php in domoticz integrated web server?
Thanks
Is it planning the support for php in domoticz integrated web server?
Thanks
Join 16,000+ members discussing home automation with Domoticz. Get help with Zigbee, ZWave, MQTT, scripting, and 150+ integrations
https://forum.domoticz.com/
Code: Select all
<VirtualHost *:80>
#Path to Domoticz www
DocumentRoot /opt/domoticz/www
#Don't proxy *.php, these files will pass trough apache server
ProxyRequests off
ProxyPassMatch ^/(.*\.php)$ !
#Redirect every call to domoticz www (running in port 8080)
ProxyPass / http://127.0.0.1:8080/
ProxyPassReverse / http://127.0.0.1:8080/
ProxyPreserveHost on
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>