Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
как отредактировать ошибк у 403
- To: nginx-ru@xxxxxxxxx
- Subject: как отредактировать ошибк у 403
- From: "r00t" <nginx-forum@xxxxxxxx>
- Date: Wed, 24 Nov 2010 14:55:33 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=244BFBIiRooibjU46rN9LA+63Vso+rfDWtWVtWAo+4A=; b=FSA7i+9jspB7eYEfPshkCp6unYGIUmwExr2n5ZVGmII47RvAY3/oU28LcXz3uomvqV6UZB/n/jM4M5u67eN028y5EfRGnt7LElTDnGNmgv7rmw7n4RthD1SLispk8+rb;
Доброго Вам Суток! Хочу обратится к вам
за помощью . Дело в том что нужно мне
видоизменить сообщение об ошибке "403
Forbidden" . Подготовил я страничку в
html-формате с измененным текстом и даю
nginx , чтоб он загружал в случае
срабатывания функции ограничения . Но
nginx не хочет загружать эту страничку, а
загружает свой текст по умолчанию.
Подскажите пожалуйста где я был не прав
в действиях ?
Вот мой конфиг :
[code]
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local]
"$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
#Block spammers and other unwanted visitors
include blockips.conf;
server {
listen 80;
server_name 192.168.0.185;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/home/portal;
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 403 /error.html;
location = /error.html {
root /usr/local/www/nginx-dist;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on
127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/usr/home/portal$fastcgi_script_name;
include fastcgi_params;
}
# deny access to htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based
configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
[/code]
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,153069,153069#msg-153069
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|