Jack | 24 Jan 07:42
Picon

Remote access to ERP5 installed through RPM

Hello everyone,

I installed ERP5 through RPM on a opensuse server. Everything went fine 
it seems but I can't access ERP5 even after opening all ports on my 
firewall.

I already tried the installation on my local machine and could access it 
through http://localhost:12001/erp5

Should I do something on the server so I can access ERP5 remotly?

Regards,
Jacques
Ignatius Kunjumon | 10 May 13:26
Picon
Gravatar

Re: Remote access to ERP5 installed through RPM

i faced the same problem but i could solve it by using nginx/apache. configuration file is as below



    server {
           listen 80;
           server_name 192.168.16.103;


    location /erp5/ {


           proxy_pass        http://localhost:12001/erp5/;
           proxy_redirect     off;

           proxy_set_header   Host             $host;
           proxy_set_header   X-Real-IP        $remote_addr;
           proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
           proxy_max_temp_file_size 0;

           proxy_connect_timeout      180;
           proxy_send_timeout         180;
           proxy_read_timeout         180;

           proxy_buffer_size          4k;
           proxy_buffers              4 32k;
           proxy_busy_buffers_size    64k;
           proxy_temp_file_write_size 64k;
           client_max_body_size 800m;
           client_body_buffer_size 128k;

           proxy_set_header X-Forwarded-Proto https;

        }

    }



On Tue, Jan 24, 2012 at 12:12 PM, Jack <jack.honore <at> gmail.com> wrote:
Hello everyone,

I installed ERP5 through RPM on a opensuse server. Everything went fine it seems but I can't access ERP5 even after opening all ports on my firewall.

I already tried the installation on my local machine and could access it through http://localhost:12001/erp5

Should I do something on the server so I can access ERP5 remotly?

Regards,
Jacques
_______________________________________________
Erp5-users mailing list
Erp5-users <at> erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users



--
Ignatius Kunjumon
Type II A, Royal Manor
Near Ambili Nagar
Tripunithura, Cochin, PIN 682301
Kerala, INDIA
phone +91 484-2785523
mob 9495-428946
_______________________________________________
Erp5-users mailing list
Erp5-users <at> erp5.org
https://mail.tiolive.com/mailman/listinfo/erp5-users

Gmane