|
|
|
|
АРХИВ :: nginx-ru
|
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Запретить всё, кр оме определённых локэ йшинов. Как?
- To: nginx-ru@xxxxxxxxx
- Subject: Re: Запретить всё, кр оме определённых локэ йшинов. Как?
- From: Андрей <deepmindster@xxxxxxxxx>
- Date: Tue, 03 Jun 2008 19:49:24 +0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=0YouZlrHIb/+CqFxdamnTkN+OvTOV29Et4qTrLjxqwQ=; b=AJXSlWgQkwwwPcLqrjVKEiiTeN5+PC9Y+BHDISITi1rrjwLT9ynlxz6xnx25t2O5dkhgXTUaK/ARUcvUt9TqzRpEKX+JovlA5v++sII9yKfdyIH5RLQ/7G/c78pzepLn0lDarKfptR61hfElcyPveJuKCcJRlMpsIgfr3A0caLY=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=XAPskx0aoYZyrsRaZKGq984VngxPrQD+cUMEHxay4E26SNFxCtc6yjhwochzkKX4elPF07NnY9ID8wJox+JLfF7NxJGkkAG8kE4qRTVzeYOMmtcE68qJpbiljywsmMZiI20RBpWv4R59lTbf+MqifSyF3qUnaUPeRKQGZ/GsaUk=
- In-reply-to: <91c9771b0806030814u5340f9e2hf00b073891c22dd@xxxxxxxxxxxxxx>
- References: <48455957.4070903@xxxxxxxxx> <91c9771b0806030814u5340f9e2hf00b073891c22dd@xxxxxxxxxxxxxx>
Спасибо, не помогло :)
Но на мысль (совместно с другим письмом) натолкнуло. Убрал
location ~ / {
deny all;
}
совсем, а location ^~ / { переписал в виде
location / {
rewrite /no-such-page /index.php?page=nosuch last;
rewrite /tech-problems /tech-problems.html last;
rewrite ^/([^\/]+)/$ /index.php?page=$1 last;
deny all;
}
вроде работает.
Тему можно считать закрытой.
Спасибо.
Андрей.
Борис Долгов пишет:
Тогда в конец:
location = / {
rewrite / /index.php?page=nosuch last;
}
2008/6/3 Андрей <deepmindster@xxxxxxxxx>:
Доброго времени суток.
Есть конфиг nginx-а, собственно, всё в этом конфиге хорошо и всё устраивает,
единственная проблема - по запросу example.com/ выдаётся ответ forbidden, а
хотелось бы видеть no-such-page.
конфиг примерно такой:
server {
listen xxx.xxx.xxx.xxx:80;
server_name example.com;
root /srv/www/vhosts/example.com
index no-such-page;
access_log /var/log/nginx/example.com.access.log main;
error_page 404 403 =200 /no-such-page;
error_page 500 501 502 503 504 =200 /tech-problems;
client_max_body_size 16k;
client_body_buffer_size 16k;
location ^~ / {
rewrite /no-such-page /index.php?page=nosuch last;
rewrite /tech-problems /tech-problems.html last;
rewrite ^/([^\/]+)/$ /index.php?page=$1 last;
}
location = /robots.txt {
}
location = /tech-problems.html {
}
location = /index.php {
fastcgi_pass 127.0.0.1:1026;
fastcgi_param SCRIPT_FILENAME
/srv/www/vhosts/example.com$fastcgi_script_name;
include fastcgi_params;
internal;
}
location /images_special {
root /srv/www/vhosts/example.com;
internal;
expires 8h;
}
location ~ / {
deny all;
}
}
подскажите, как добится желаемого, пжл. Ну и может общие замечания-советы,
тоже буду рад. Спасибо.
nginx 0.6.31
|
|
|
|