I have run Odoo 10.0 and 11.0 service on the same machine on different port (8010 and 8011) and want set up one Nginx service as reverse proxy for all of them.
I edited the Nginx's config file as below:
events {
}
http {
server {
listen 443 ssl;
ssl_certificate pem.crt;
ssl_certificate_key pem.key;
location /odoo10/ {
proxy_pass http://127.0.0.1:8010;
client_max_body_size 50m;
}
location /odoo11/ {
proxy_pass http://127.0.0.1:8011;
client_max_body_size 50m;
}
}
}
and hope to browse version 10.0 and 11.0 with url https://xx.xx.xx.xx/odoo10 and https://xx.xx.xx.xx/odoo11 respectively.
However, when I link to https://xx.xx.xx.xx/odoo10 the error 404 displayed:
"GET /odoo10/ HTTP/1.0" 404 -
There is same issue when I link to https://xx.xx.xx.xx/odoo11
So, Anyone have advise for this problem?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
3541
أدوات العرض
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
2
سبتمبر 24
|
2291 | ||
|
1
مايو 24
|
3477 | ||
|
2
مايو 24
|
14783 | ||
|
1
يونيو 20
|
6390 | ||
|
2
يونيو 16
|
13713 |