Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Windows и пути к папкам (config)
- To: nginx-ru@xxxxxxxxx
- Subject: Windows и пути к папкам (config)
- From: "Fedia" <nginx-forum@xxxxxxxx>
- Date: Sun, 15 Aug 2010 15:08:11 -0400
- 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=qK06i4VU1JzIyK3QQ9IAYRP+TyWg4IWTksK9Atp5QHQ=; b=igSxqN4VxTxN6nY+eK6U31lXqlZSZ+3bPKtpr2FOXH9S8p75xavb2sPvhhz0+3+GoHngE5awSMKMN18ZW1nBKwvj6URaOuDK4+wg1Oz3pCB+rF7VU4u4jMHoOBTAYMJO;
Windows XP
на диске есть 2 папки:
C:/Program Files/www/
C:/Program Files/KLUpdater/Updates/
нужно чтобы они были доступны по
адресам соответственно:
http://192.168.23.1:8080/
http://192.168.23.1:8080/files/
вот часть конфига:
[code]
server {
listen 192.168.23.1:8080;
server_name megaserver;
location / {
root "C:/Program Files/www/";
index index.html index.htm;
autoindex on;
}
location /files/ {
root "C:/Program Files/KLUpdater/Updates/";
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
[/code]
первая папка отображается по своему
адресу, но вторая пишет 404 Not Found
что я делаю нетак?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,120091,120091#msg-120091
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|