Hello - I am having a hard time connecting with a reverse proxy from an apache2 server to an owncloud 8.1 instance on server 2008. I realize this is unsupported now, but am hoping to get another year out of this platform while I build a new one. Can anyone take a look, especially at this line, which I cant seem to figure out:
‘overwritecondaddr’ => ‘^192\.168\.2\.79$’,
The manual says it needs to be:
" The value must be a regular expression of the IP addresses of the proxy. This is useful when you use a reverse SSL proxy only for https access and you want to use the automatic detection for http access."
https://doc.owncloud.org/server/8.2/admin_manual/configuration_server/reverse_proxy_configuration.html
any help greatly appreciated - I can get to the door and see the owncloud login but it is greyed out and cant login
<?php $CONFIG = array ( 'instanceid' => 'oc62q5kt2xq6', 'passwordsalt' => 'vxy0J4uQOORt7HqT0n0DvwWF5WP/Pk', 'secret' => 'hyujCINkbMghOIw0ocrr3gcS6uR3zmnkPCL.LuoUAN0mqDOy', 'trusted_domains' => array ( 0 => '127.0.0.1', 1 => 'pet310', 2 => '68.118.47.66', 3 => 'pet310.belldesign.com', 4 => 'bdcloud.belldesigncloud.com', 5 => 'www.bdcloud.belldesigncloud.com', 6 => '192.168.2.201', 7 => '192.168.2.79', 8 => 'belldesign.com', ), 'datadirectory' => 'D:\\owncloud', 'dbtype' => 'mysql', 'version' => '8.0.2.0', 'installed' => true, 'forcessl' => true, 'mail_smtpmode' => 'smtp', 'mail_smtphost' => 'smtp.belldesign.com', 'mail_smtpport' => '25', 'mail_from_address' => 'owncloud', 'mail_domain' => 'belldesign.com', 'mail_smtpauth' => 1, 'mail_smtpauthtype' => 'LOGIN', 'mail_smtpname' => 'owncloud@belldesign.com', 'mail_smtppassword' => 'deadfred1', 'overwrite.cli.url' => 'https://www.bdcloud.belldesigncloud.com', 'htaccess.RewriteBase' => '/', 'dbname' => 'owncloud', 'dbhost' => 'localhost', 'dbtableprefix' => 'oc_', 'dbuser' => 'owncloud', 'dbpassword' => 'owncloud', 'loglevel' => 3, 'trusted_proxies' => array ( 0 => '192.168.2.79', 1 => 'belldesigncloud.com', 2 => 'www.belldesigncloud.com', ), 'overwritehost' => 'belldesigncloud.com:443', 'overwriteprotocol' => 'https', 'overwritewebroot' => 'bdcloud.belldesigncloud.com', 'overwritecondaddr' => '^192\\.168\\.2\\.79$', );