phpmyadmin on apache behind https nginx

Umesh Sirsiwal usirsiwal at verivue.com
Wed Jul 13 21:48:26 MSD 2011


You might want to try:

proxy_set_header  <http://wiki.nginx.org/NginxHttpProxyModule#proxy_set_header>  Host$http_host;

in your proxy.conf.

-Umesh


On 07/13/2011 01:19 PM, Gelonida wrote:
> Hi,
>
> I'm just starting to use nginx.
> I'm not sure, whether my nginx configuration is wrong or
> whether there are some parameters do be changed in phpmyadmin, such,
> that it works well behind a reverse proxy.
>
> Currently phpmyadmin is running on apache.
>
> What I wanted to do is use nginx (https) as front end
> and use it to serve all the static contents
>
> and keep apache (for the time being) for the php contents
>
>
> The nginx config  I use is:
>
>       location /phpmyadmin {
>           alias /usr/share/phpmyadmin/;
>           index index.php;
>       }
>       location ~ .php$ {
>           # Use apache for the time being
>           proxy_pass http://127.0.0.1:8080;
>           include proxy.conf;
>       }
>
>       location / {
>           root   /var/www;
>           index  index.html index.htm;
>       }
>
>
> my apache configuration is
> Alias /phpmyadmin /usr/share/phpmyadmin
>
>
> I tested phpmyadmin after reconfigring apache
> http://hostname:8080/phpmyadmin
>
>
> When running behind nginx following happens:
> - I get the login screen
> - I enter user name and password
> - I am redirected to
> http://hostname:8080/index.php?...
> instead of http://hostname/index.php?... thus
> the browser tries connect directly to the ptoxied server.
>
> This will stop working as soon as I let listen apache only on the localhost.
>
> forther I'd like to give access to phpmyadmin only via https:
>
>
> What are the parameters, that I have to modify
> in nginx (or phpmyadmin) to make my setup work.
>
> Thanks in advance for your help.
>
>
>
>
>
>
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://nginx.org/mailman/listinfo/nginx

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://nginx.org/pipermail/nginx/attachments/20110713/66aedae1/attachment-0003.html>


More information about the nginx mailing list