Re: [galaxy-dev] apache on ubuntu

2016-09-13 Thread Jochen Bick
Hi Keith, > You say you can see the Apache instance from other machines on the network. I > assume you are accessing your machine via its local IP address (something > like 192.168.1.x); what happens when you try to access Galaxy via > http://192.168.1.x:8080? > Yes I used my local IP and

Re: [galaxy-dev] apache on ubuntu

2016-09-13 Thread Suderman Keith
Jochen, Two quick questions for you: You say you can see the Apache instance from other machines on the network. I assume you are accessing your machine via its local IP address (something like 192.168.1.x); what happens when you try to access Galaxy via http://192.168.1.x:8080? I see you

Re: [galaxy-dev] apache on ubuntu

2016-09-13 Thread Will Holtz
a2enmod adds an apache module to your list of enabled modules. Previously enabled modules will remain enabled. -Will On Tue, Sep 13, 2016 at 12:10 AM, Jochen Bick wrote: > Hi Will and Ray, > > > > You may need to load the mod_rewrite module. This can be done via: > >

Re: [galaxy-dev] apache on ubuntu

2016-09-13 Thread Jochen Bick
Hi Will and Ray, > You may need to load the mod_rewrite module. This can be done via: > sudo a2enmod rewrite I will try that. Is this also resetting the modules of apache? > > -Will > >> >> I presume you've restarted the web server after making this change? >> >> Apache's mod_rewrite (the

Re: [galaxy-dev] apache on ubuntu

2016-09-05 Thread Will Holtz
You may need to load the mod_rewrite module. This can be done via: sudo a2enmod rewrite -Will On Mon, Sep 5, 2016 at 7:10 AM, Raymond Wan wrote: > Hi Jochen, > > > > On Sat, Sep 3, 2016 at 2:31 AM, Bick Jochen > wrote: > > RewriteEngine

Re: [galaxy-dev] apache on ubuntu

2016-09-05 Thread Raymond Wan
Hi Jochen, On Sat, Sep 3, 2016 at 2:31 AM, Bick Jochen wrote: > RewriteEngine on > RewriteRule ^(.*) http://localhost:8080$1 [P] ... > but it does not have any effect. Here the error.log but there is no error: > [Fri Sep 02 15:28:21.677881 2016]

Re: [galaxy-dev] apache on ubuntu

2016-09-02 Thread Bick Jochen
Hi Ray, I added two lines to the following file: /etc/apache2/sites-available/000-default.conf it now looks like this: # The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating #

Re: [galaxy-dev] apache on ubuntu

2016-09-02 Thread Raymond Wan
Hi Jochen, On Fri, Sep 2, 2016 at 8:32 PM, Jochen Bick wrote: > yes exactly. So my problem is that I have no idea where to copy those > settings. I have tutorial how it works on Centos but the file structure is > different on Ubuntu. Slightly different, but not too

Re: [galaxy-dev] apache on ubuntu

2016-09-02 Thread Jochen Bick
Hi Ray, yes exactly. So my problem is that I have no idea where to copy those settings. I have tutorial how it works on Centos but the file structure is different on Ubuntu. So I have my galaxy instance running on localhost:8080 (can also be moved to something else). If I run localhost or

Re: [galaxy-dev] apache on ubuntu

2016-09-01 Thread Raymond Wan
Hi Jochen, I presume you looked at this already: https://wiki.galaxyproject.org/Admin/Config/ApacheProxy Those instructions work for Ubuntu as well. What do your Apache2 error logs says (in /var/log/apache2/)? And what have you tried in your configuration files? And are you trying to forward

[galaxy-dev] apache on ubuntu

2016-09-01 Thread Jochen Bick
Hi, I'm having trouble setting up the apache to redirect my local running galaxy which runs on localhost:8080 I would like that people could have access inside the lab knowing my local ip address. I read plenty of tutorials, can anyone help setting it up on Ubuntu? The files I have to modify