[Comm] ALT-4.0 и nginx - Fast HTTP server
Vitalik Salomatin
=?iso-8859-1?q?chelroot74_=CE=C1_mail=2Eru?=
Пт Окт 24 15:08:34 MSD 2008
Установил из коробки nginx - Fast HTTP server
apt-get instal nginx
правлю, запускаю:
service httpd stop; service nginx restart; service httpd start
Пробую получать просто статические страницы
захожу: http://10.0.0.1/
отвечает: 403 Forbidden nginx/0.5.20
http://10.0.0.1:81 - напрямую апач отвечает.
Или nginx не проксирует на апач, либо апач не воспринимает nginx
в /etc/nginx/nginx.conf добавил только IP адрес - не работает.
Надо ли ставить еще какие пакеты?
Какие точно изменения надо сделать и что точно прописать в
конфиге?
в логах:
2008/10/24 15:40:51 [error] 2409#0: *2 directory index
of "/var/www/html/." is forbidden, client: 10.0.0.99, server:
chel.ru, URL: "/", host: "10.0.0.1"
Сам конфиг:
########################
worker_processes 10;
error_log /var/log/nginx/error.log;
events {
worker_connections 1024;
}
http {
proxy_temp_path /var/spool/nginx/tmp/proxy;
fastcgi_temp_path /var/spool/nginx/tmp/fastcgi;
client_body_temp_path /var/spool/nginx/tmp/client;
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
gzip on;
# text/html don't need to be defined there, it always
compressed
gzip_types text/plain text/css text/xml
application/x-javascript application/atom+xml;
# gzip_comp_level 9;
server {
listen 10.0.0.1:80;
server_name chelsi74.ru;
location / {
root /var/www/html/;
index index.html index.htm index.shtml;
# autoindex on;
# autoindex_exact_size on;
# autoindex_localtime on;
# expires on;
# cooperate with mod_realip in apache-1.3 or
mod_rpaf in apache-2.x
# proxy_redirect off;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For
$remote_addr;
# proxy_pass http://127.0.0.1/;
}
# charset on;
# source_charset koi8-r;
access_log /var/log/nginx/access.log;
}
}
######################
Спасибо.
Подробная информация о списке рассылки community