Can we configure Umbraco DB as Read Only on Production
Hi,
We are developing a site in Umbraco v7.2. Our client has setup a load balancing environment on Production.
Due to security reasons client wants the Umbraco DB to be read only on front end servers. For uploading the content and accessing Umbraco dashboard there will be a different Back office server altogethere where the DB would be configured as read/write. And then using synchronization and replication data would be replicated from back office server on to front end servers.
I just want to confirm will there be any issues if we configure Umbraco DB as read only on front end servers??
@Murray I believe this has changed. Umbraco's log entries are wrote to disk at ~/App_Data/Logs/
@Vibhanshu Could you not just disable Umbraco access on your front-end servers? Adding a ~/umbraco/web.config file and a rewrite rule to block access should work. To synchronise content from your back office server to front end servers, you could use Umbraco's Distributed Calling which should do the job you require.
Can we configure Umbraco DB as Read Only on Production
Hi,
We are developing a site in Umbraco v7.2. Our client has setup a load balancing environment on Production.
Due to security reasons client wants the Umbraco DB to be read only on front end servers. For uploading the content and accessing Umbraco dashboard there will be a different Back office server altogethere where the DB would be configured as read/write. And then using synchronization and replication data would be replicated from back office server on to front end servers.
I just want to confirm will there be any issues if we configure Umbraco DB as read only on front end servers??
Regards,
Vibhanshu
I think you'd have issues with umbraco wanting to write to the umbracoLog table (or has this changed in 7.x )
@Murray I believe this has changed. Umbraco's log entries are wrote to disk at
~/App_Data/Logs/
@Vibhanshu Could you not just disable Umbraco access on your front-end servers? Adding a
~/umbraco/web.config
file and a rewrite rule to block access should work. To synchronise content from your back office server to front end servers, you could use Umbraco's Distributed Calling which should do the job you require.is working on a reply...