Welcome! Log In Create A New Profile

Advanced

Re: Trouble adding /pma location to all virtual hosts

B.R.
June 27, 2013 01:18PM
Hello,

On Thu, Jun 27, 2013 at 1:02 PM, Ben Johnson <ben@indietorrent.org> wrote:

>
>
> On 6/27/2013 12:42 PM, Ben Johnson wrote:
> > I don't want PMA (anything within the /pma/ location) to be accessible
> > over a plaintext connection. In other words, I wish to force HTTPS.
> >
> > Do I need to add something something like this to the location block?
> >
> > rewrite ^ https://domain.com$request_uri? permanent;
> >
> > (Ideally, I would like the "domain.com" part to be dynamic, so it works
> > for all vhosts; would I use $host, $server_name? Something else
> entirely?)
>
> I ended-up with this, and it seems to work as expected:
>
> location ^~ /pma/ {
> root /var/www/;
>
> if ($scheme = http) {
> return 301 https://$server_name$request_uri;
> }
>
> # ...
> }
>
> If there's a better way of achieving the same, I'd love to be informed.
>
​
I would have kept the
rewrite<http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite>statement
which was a good idea.​

​The produced redirect is always a 301 (not 302) when the replacement
string starts with http(s) (check the doc page to which I provide the
link).​
Why would you replace it with a 'if' statement?
http://wiki.nginx.org/IfIsEvil

I guess you can use the variables in the rewrite directive aswell.

>
> Thanks,
>
> -Ben
>
> _______________________________________________
> nginx mailing list
> nginx@nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>

---
*B. R.*
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Trouble adding /pma location to all virtual hosts

Ben Johnson June 25, 2013 04:20PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 26, 2013 10:24AM

Re: Trouble adding /pma location to all virtual hosts

Francis Daly June 26, 2013 05:34PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 27, 2013 12:44PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 27, 2013 12:56PM

Re: Trouble adding /pma location to all virtual hosts

Francis Daly June 27, 2013 07:10PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 27, 2013 01:04PM

Re: Trouble adding /pma location to all virtual hosts

B.R. June 27, 2013 01:18PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 27, 2013 02:10PM

Re: Trouble adding /pma location to all virtual hosts

B.R. June 27, 2013 03:10PM

Re: Trouble adding /pma location to all virtual hosts

Francis Daly June 27, 2013 07:14PM

Re: Trouble adding /pma location to all virtual hosts

Ben Johnson June 28, 2013 02:16PM

Re: Trouble adding /pma location to all virtual hosts

Francis Daly June 27, 2013 07:06PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 179
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready