We currently have two EC2 servers running apache servers with django wsgi on freebsd. We use django rosetta for translations. However, we have two servers with two different sets of files so if one of our translators translates in django rosetta, only one server will have the updated translations. We need a solution to share the same LOCALE files across both systems.
We have tried setting up SSHFS and pointed LOCALE_PATHS in our settings.py to the mounted drive, however, django does not seem to recognize the mounted directory. We modified all the permissions and everything we could think of to get django to see the mounted locale directory but with no success.
The question is, what other solutions are there for sharing the same set of translation files across two different servers on amazon EC2 web servers using freebsd and keeping them synced as changes occur?