July 05, 2014 12:29PM
I'm having a heck of a time setting allow / deny rules for certain directories and files + getting Nginx to keep handling other location rules.

For example, I want to only allow my IP address access to the WordPress login page:

location ~* wp-login.php {
allow 22.131.12.14;
deny all;
}

# Pass off php requests to Apache
location ~* \.php$ {
include /usr/local/etc/nginx/proxypass.conf;
proxy_pass http://127.0.0.1:80;
}

When I visit the WordPress login page, all I see is the raw PHP code.

How can I set up the first location block to allow me to add allow / deny rules, charset, headers, etc + have PHP files still processed by the second location block?
Subject Author Posted

Setting Allow / Deny Rules + Keep processing other location rules?

Mayhem30 July 05, 2014 12:29PM

Re: Setting Allow / Deny Rules + Keep processing other location rules?

Maxim Dounin July 05, 2014 04:46PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 271
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