Welcome! Log In Create A New Profile

Advanced

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

May 22, 2017 03:24AM
Thanks for you answer.

I meant that I need to restrict access to single wordpress page (there is a secret form there).
/secret-page/ - is a permalink of the page, rewritten URL managed by wordpress.

To make it work I used general config for wordpress I found on DigitalOcean guide
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;

root /var/www/html;
index index.php index.html index.htm;

server_name your_domain.com;

location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}

error_page 404 /404.html;

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}

location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
Subject Author Posted

How to restrict acces to specific friendly URL by IP in Wordpress site?

ohmykot May 19, 2017 03:24AM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

alexsamad May 19, 2017 05:38PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

gariac May 19, 2017 06:02PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

alexsamad May 19, 2017 06:16PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Igal @ Lucee.org May 19, 2017 06:22PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Igal @ Lucee.org May 19, 2017 06:48PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

gariac May 19, 2017 07:04PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Igal @ Lucee.org May 19, 2017 07:10PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Igal @ Lucee.org May 19, 2017 05:50PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

ohmykot May 22, 2017 03:24AM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Aleksandar Lazic May 19, 2017 07:42PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Francis Daly May 22, 2017 07:10PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

gariac May 22, 2017 07:54PM

Re: How to restrict acces to specific friendly URL by IP in Wordpress site?

Francis Daly May 27, 2017 03:16AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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