Hello,
I like to install more than 1 instance of odoo on my server. I like to install 2 odoo websites. I think a good way to make this is the installation as wsgi modul. Now i setup odoo working as wsgi on my apache2.4.7. I followed this HowTo:
http://opensourceholic.com/2014/05/30/how-to-deploy-odoo-openerp-8-with-mod_wsgi-on-ubuntu-linux-servers-vps-ec2/#more-161
All is working exepting that i cant load the static css files. I get this error messages in browser:
Could not get content for /website/static/src/css/snippets.css defined in bundle 'website.asserts_editor'
Could not get content for /website/static/src/css/editor.css defined in bundle 'website.asserts_editor'
.....
ConfigFile: /srv/apache2/vhosts/server1/openerp-wsgi.py
import openerp
openerp.multi_procress = True
openerp.conf.server_wide_modules = ['web']
conf = openerp.tools.config
conf['logfile'] = '/var/log/odoo/odoo-server.log'
conf['addons_path'] = '/srv/apache2/vhosts/server1/openerp/addons'
conf['db_name'] = 'odoo1'
conf['db_host'] = '127.0.0.1'
conf['db_user'] = 'openerp_user1'
conf['db_port'] = 5432
conf['db_password'] = '*******'
application = openerp.service.wsgi_server.application
bind = '0.0.0.0:8070'
pidfile = '.gunicorn.pid'
workers = 4
timeout = 240
max_request = 2000
ConfigFile: /etc/apache2/sites-enabled
<VirtualHost *:80>
LogLevel info
ServerName messekonzept.ms033.moonshot.fastwebserver.de
ServerAlias *.messekonzept.ms033.moonshot.fastwebserver.de
DocumentRoot /srv/apache2/vhosts/server1/openerp/addons
WSGIScriptAlias / /srv/apache2/vhosts/server1/openerp-wsgi.py
WSGIDaemonProcess oe user=odoo group=odoo home=/srv/apache2/vhosts/server1/openerp/addons/ processes=2 python-path=/srv/apache2/vhosts/server1/ display-name=apache-openerp-server1
WSGIProcessGroup oe
ErrorLog /var/log/openerp/server1-error.log
CustomLog /var/log/openerp/server1-access.log combined
<Directory /srv/apache2/vhosts/server1>
Options All
AllowOverride All
Require all granted
</Directory>
</VirtualHost>