http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
index index.php index.htm index.html;
include /etc/nginx/conf.d/*.conf;
}
server {
listen 80;
server_name localhost;
root /web/html/sitename.ru;
location / {
#root /usr/share/nginx/html;
location ~ ^/\.git{
return 404;
}
location ~ ^/fw\/ {
return 403;
}
location ~ ^/fd\/tp\/ {
return 403;
}
autoindex off;
location /wi {
rewrite ^(.*)$ /wi/;
}
location /wi\/ {
alias /web/html/sitename.ru/wi/;
}
rewrite ^/([A-Za-z0-9\/\-\_]+)$ /index.php?path=$1;
rewrite ^/([A-Za-z0-9\/\-\_]+)\/$ /index.php?path=$1;
}
error_page 404 /ws/404.php;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
set $root_path /web/html/sitename.ru;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $root_path$fastcgi_script_name;
include fastcgi_params;
fastcgi_param DOCUMENT_ROOT $root_path;
}
#deny access to .htaccess files, if Apache's document root
#concurs with nginx's one
#location ~ /\.ht {
# deny all;
#}
}
Сайт 192.168.1.184 выполнил переадресацию слишком много раз.
Удалите файлы cookie..
ERR_TOO_MANY_REDIRECTS
А какое отношение эта утилита имеет к запуску по cron?
Отправляйтесь на удалённый сервер под тем пользователем, которым пытаетесь авторизоваться и делайте следующее:
chmod go-w ~/
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys
По шагам:
Запрещаем запись в домашнюю директорию пользователя всем, кроме владельца.
Разрешаем чтение, вход и запись в директории с настройками .ssh только владельцу.
Разрешаем читать и менять файл .ssh/authorized_keys только владельцу.