Welcome! Log In Create A New Profile

Advanced

Re: Disable access by IP and unknown hosts

Nginx User
October 30, 2011 01:24PM
On 30 October 2011 19:57, MyName <nginx-forum@nginx.us> wrote:
> server {
>    listen       80;
>    listen       443;
>    return      403;
>    server_name  domaingue.crots
>                 www.domaingue.crots
>                 ;
>
>    location / {
>        root   path/to/html;
>        index  index.php index.html index.htm;
>    }


You need a separate server block for your domain. Example below. You
need to change to match your specific needs (E.G. location for php)

# Default server
server {
listen 80;
listen 443;
return 403;
}

# domaingue.crots server
server {
server_name domaingue.crots www.domaingue.crots;

# Put "root" and "index" directives at the server level
root path/to/html;
index index.php index.html index.htm;

# As many locations as needed
location / {
try_files $uri $uri/ =404;
}
# As many locations as needed
location ~ .+\.php$ {
# Linebelow is important for security
location ~ \..*/.*\.php$ { return 400; }

#proxy_pass/fastcgi_pass etc
}
}

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Disable access by IP and unknown hosts

leocrespo May 11, 2010 02:52AM

Re: Disable access by IP and unknown hosts

Igor Sysoev May 11, 2010 02:58AM

Re: Disable access by IP and unknown hosts

leocrespo May 11, 2010 03:06AM

Re: Disable access by IP and unknown hosts

Igor Sysoev May 11, 2010 03:20AM

Re: Disable access by IP and unknown hosts

leocrespo May 11, 2010 04:00AM

Re: Disable access by IP and unknown hosts

MyName October 29, 2011 02:06PM

Re: Disable access by IP and unknown hosts

Nginx User October 29, 2011 03:54PM

Re: Disable access by IP and unknown hosts

MyName October 30, 2011 12:57PM

Re: Disable access by IP and unknown hosts

Nginx User October 30, 2011 01:24PM



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