Skocz do zawartości

Polecane posty

Witam, posiadam serwer vps, oraz zainstalowałem na nim serwer www, nginx. Podpiąłem domene pod ten serwer i nie moge uporać się z jednym problem, otóż podpięta domena to cs-katownia.pl, pod tym adresem wyświetla się błąd "403 Forbidden" jednak pod subdomeną ts3.cs-katownia.pl strona działa prawidłowo, nie wiem co może być przyczyną tego błędu, DNS są podpięte prawidłowo ponieważ pingując serwer wyświetla się ip vps'a czyli, 185.49.15.222.

Prosiłbym o pomoc ludzi którzy się na tym znają, Pozdrawiam!

 

nginx.conf

 

 

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events {
	worker_connections 768;
	 multi_accept on;
}

http {

	##
	# Basic Settings
	##

	sendfile on;
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 65;
	types_hash_max_size 2048;
	 server_tokens off;

	# server_names_hash_bucket_size 64;
	# server_name_in_redirect off;

	include /etc/nginx/mime.types;
	default_type application/octet-stream;

	##
	# Logging Settings
	##

	access_log /var/log/nginx/access.log;
	error_log /var/log/nginx/error.log;

	##
	# Gzip Settings
	##

	gzip on;
	# gzip_disable "msie6";

	# gzip_vary on;
	# gzip_proxied any;
	# gzip_comp_level 6;
	# gzip_buffers 16 8k;
	# gzip_http_version 1.1;
	# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

	##
	# nginx-naxsi config
	##
	# Uncomment it if you installed nginx-naxsi
	##

	#include /etc/nginx/naxsi_core.rules;

	##
	# nginx-passenger config
	##
	# Uncomment it if you installed nginx-passenger
	##
	
	#passenger_root /usr;
	#passenger_ruby /usr/bin/ruby;

	##
	# Virtual Host Configs
	##

	include /etc/nginx/conf.d/*.conf;
	include /etc/nginx/sites-enabled/*;
}


#mail {
#	# See sample authentication script at:
#	# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#	# auth_http localhost/auth.php;
#	# pop3_capabilities "TOP" "USER";
#	# imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#	server {
#		listen     localhost:110;
#		protocol   pop3;
#		proxy      on;
#	}
# 
#	server {
#		listen     localhost:143;
#		protocol   imap;
#		proxy      on;
#	}
#}

 

 

/etc/nginx/sites-available/cs-katownia.pl

 

 

server {
    listen 80 default;

    server_name localhost;
    access_log /usr/share/nginx/access.log;
    error_log /usr/share/nginx/error.log;

    root /home/cskatowniapl/public;
    index index.php index.html index.htm;

    location / {
autoindex on;
        autoindex_exact_size off;
        try_files  $uri $uri/ /index.html;
    }
 location ~ \.php$ {
        try_files  $uri =404;
        fastcgi_pass  unix:/var/run/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include  fastcgi_params;
    }
 location ~ /\.ht {

    }
} 

 

 

Konfiguracja DNS'ów

https://lh3.googleusercontent.com/Mq3Zz4fuAngse-m9Ar-m1wss8raQWbMJkvaBjbs-dJQBDStkbjuI43bfKoXiOudzVb_AUjw4_I34exE=w1217-h698

Edytowano przez tomeksz104 (zobacz historię edycji)

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

w pliku error.log, jeden wpis zwraca uwagę związany z ikoną w przeglądarce, ale raczej on nie przyczynia się do tego błędu

 

 

2015/03/14 06:46:36 [error] 6724#0: *2773 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:46:39 [error] 6724#0: *2772 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:48:12 [error] 6724#0: *2790 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:51:36 [error] 6724#0: *2795 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:51:41 [error] 6724#0: *2802 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:51:43 [error] 6724#0: *2804 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:51:57 [error] 6724#0: *2803 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:52:43 [error] 6724#0: *2798 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:52:46 [error] 6724#0: *2808 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:01 [error] 6724#0: *2800 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:03 [error] 6724#0: *2812 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:33 [error] 6724#0: *2825 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:35 [error] 6724#0: *2801 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:40 [error] 6724#0: *2819 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:53:42 [error] 6724#0: *2826 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:54:23 [error] 6724#0: *2833 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:54:26 [error] 6724#0: *2842 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:56:28 [error] 6724#0: *2846 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:56:31 [error] 6724#0: *2854 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:58:43 [error] 6724#0: *2863 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:59:05 [error] 6724#0: *2867 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:59:08 [error] 6724#0: *2860 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:59:10 [error] 6724#0: *2866 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:59:15 [error] 6724#0: *2869 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 06:59:58 [error] 6724#0: *2865 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.180.231, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 10:59:48 [error] 6724#0: *2895 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 104.180.240.135, server: localhost, request: "GET /usr HTTP/1.1", host: "185.49.15.222"
2015/03/14 10:59:48 [error] 6724#0: *2896 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 104.180.240.135, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:52:55 [error] 6724#0: *2902 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:53:04 [error] 6724#0: *2905 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:53:38 [error] 6724#0: *2898 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:53:41 [error] 6724#0: *2897 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:55:06 [error] 6724#0: *2927 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:55:28 [error] 6724#0: *2929 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /images/carbon/highlight.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/css.php?stylesheet=30"
2015/03/14 17:55:28 [error] 6724#0: *2931 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /images/carbon/row_gradient.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/css.php?stylesheet=30"
2015/03/14 17:55:28 [error] 6724#0: *2924 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:55:52 [error] 6724#0: *2940 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:09 [error] 6724#0: *2947 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:11 [error] 6724#0: *2955 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:12 [error] 6724#0: *2956 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:14 [error] 6724#0: *2942 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:22 [error] 6724#0: *2953 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:28 [error] 6724#0: *2952 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:42 [error] 6724#0: *2970 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:50 [error] 6724#0: *2971 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:55 [error] 6724#0: *2957 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:56:57 [error] 6724#0: *2983 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:23 [error] 6724#0: *2988 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:32 [error] 6724#0: *2993 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:35 [error] 6724#0: *2937 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:40 [error] 6724#0: *3006 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:42 [error] 6724#0: *3007 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:45 [error] 6724#0: *3009 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:48 [error] 6724#0: *3003 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:54 [error] 6724#0: *3010 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:56 [error] 6724#0: *3019 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /images/carbon/highlight.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/css.php?stylesheet=30"
2015/03/14 17:57:56 [error] 6724#0: *2998 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /images/carbon/row_gradient.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/css.php?stylesheet=30"
2015/03/14 17:57:56 [error] 6724#0: *3011 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:57 [error] 6724#0: *3021 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:57:59 [error] 6724#0: *3025 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:58:03 [error] 6724#0: *3028 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /images/carbon/highlight_faint.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/css.php?stylesheet=30"
2015/03/14 17:58:03 [error] 6724#0: *3022 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 17:58:12 [error] 6724#0: *3027 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/14 20:44:44 [error] 6725#0: *3045 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 152.250.251.124, server: localhost, request: "GET /webdav/ HTTP/1.1", host: "185.49.15.222"
2015/03/15 05:11:47 [error] 6725#0: *3072 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 94.254.129.14, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:11:41 [error] 6725#0: *3078 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:33:38 [error] 6725#0: *3093 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:33:41 [error] 6725#0: *3090 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:33:45 [error] 6725#0: *3094 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:34:38 [error] 6724#0: *3109 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:34:40 [error] 6725#0: *3092 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:34:43 [error] 6724#0: *3122 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:37:44 [error] 6724#0: *3130 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:39:55 [error] 6724#0: *3140 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:48:19 [error] 6725#0: *3154 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:50:12 [error] 6723#0: *3163 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:50:15 [error] 6723#0: *3164 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:50:18 [error] 6723#0: *3167 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:50:20 [error] 6723#0: *3165 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:50:22 [error] 6723#0: *3170 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:18 [error] 6723#0: *3168 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:21 [error] 6723#0: *3166 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:23 [error] 6723#0: *3198 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:26 [error] 6723#0: *3194 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:30 [error] 6723#0: *3193 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:35 [error] 6723#0: *3192 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:39 [error] 6723#0: *3176 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:50 [error] 6723#0: *3206 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:51:52 [error] 6723#0: *3210 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:52:21 [error] 6723#0: *3214 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:52:23 [error] 6723#0: *3219 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 06:54:13 [error] 6723#0: *3226 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 83.11.116.3, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 09:49:41 [error] 6723#0: *3243 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 94.254.129.164, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 09:54:53 [error] 6723#0: *3252 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 94.254.129.164, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 10:18:21 [error] 6723#0: *3273 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 94.254.129.164, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 11:50:16 [error] 6723#0: *3275 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 11:50:46 [error] 6722#0: *3294 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 94.254.129.16, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:07:50 [error] 6722#0: *3301 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /images/carbon/thead_orange.png HTTP/1.1", host: "185.49.15.222", referrer: "http://185.49.15.222/"
2015/03/15 12:07:50 [error] 6722#0: *3295 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:08:07 [error] 6723#0: *3307 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:08:28 [error] 6722#0: *3298 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:08:36 [error] 6722#0: *3299 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:05 [error] 6722#0: *3297 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:07 [error] 6723#0: *3306 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:09 [error] 6722#0: *3300 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:22 [error] 6723#0: *3317 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:24 [error] 6723#0: *3319 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:45 [error] 6723#0: *3321 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:09:47 [error] 6723#0: *3327 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:13:24 [error] 6723#0: *3338 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:13:27 [error] 6723#0: *3340 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:13:37 [error] 6723#0: *3342 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:13:39 [error] 6723#0: *3344 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:13:57 [error] 6723#0: *3351 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:14:51 [error] 6723#0: *3349 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:15:38 [error] 6723#0: *3361 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:15:40 [error] 6723#0: *3346 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:17:14 [error] 6723#0: *3377 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:17:17 [error] 6723#0: *3378 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:18:50 [error] 6723#0: *3385 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:19:04 [error] 6723#0: *3388 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:29:53 [error] 6723#0: *3413 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:30:10 [error] 6723#0: *3405 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:30:12 [error] 6723#0: *3406 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:31:31 [error] 6723#0: *3426 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:31:34 [error] 6723#0: *3437 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:31:36 [error] 6723#0: *3441 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:31:37 [error] 6723#0: *3452 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:31:38 [error] 6723#0: *3429 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:32:56 [error] 6725#0: *3465 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:33:51 [error] 6722#0: *3467 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:33:58 [error] 6722#0: *3468 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:05 [error] 6722#0: *3469 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:27 [error] 6725#0: *3464 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:33 [error] 6725#0: *3461 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:43 [error] 6725#0: *3472 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:45 [error] 6725#0: *3470 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:34:58 [error] 6725#0: *3473 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:35:15 [error] 6725#0: *3463 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:35:16 [error] 6725#0: *3483 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:35:34 [error] 6725#0: *3499 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:35:50 [error] 6725#0: *3501 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:35:53 [error] 6725#0: *3508 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:36:07 [error] 6725#0: *3506 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:36:40 [error] 6724#0: *3515 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:36:41 [error] 6725#0: *3509 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:36:43 [error] 6725#0: *3507 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:02 [error] 6724#0: *3518 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:09 [error] 6724#0: *3532 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:16 [error] 6724#0: *3537 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:20 [error] 6724#0: *3535 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 89.78.191.72, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:29 [error] 6724#0: *3519 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:37 [error] 6724#0: *3520 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222"
2015/03/15 12:37:40 [error] 6724#0: *3517 rewrite or internal redirection cycle while internally redirecting to "/index.html", client: 79.184.105.126, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "185.49.15.222" 

 

 

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

Strona znajduję się w /home/cskatowniapl/public na wszystkie 3 foldery są ustawione chmod 777 oraz na plik index.php ustawione 666, przed napisanie tematu próbowałem wszelkimi sposobami to naprawić, na miarę moich możliwości ;d

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

Na pewno w vhoście domeny masz dobrze ustawionego root'a?

Tak mam dobrze ustawionego roota, pod adresem ip 185.49.15.222 oraz pod adresem ts3.cs-katownia.pl wszystko działa poprawnie.

 

  try_files  $uri =404;

zamień na

    try_files $uri $uri/ =404;

oraz

server_name localhost;

na nazwę domeny (np. cs-katownia.pl)

 

 

Po tym zabiegu oraz restarcie nginx pojawił się błąd:

Restarting nginx: nginx: [warn] conflicting server name "cs-katownia.pl" on 0.0.0.0:80, ignored

chyba coś popsułem podczas konfiguracji nginx?

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

Bądź aktywny! Zaloguj się lub utwórz konto

Tylko zarejestrowani użytkownicy mogą komentować zawartość tej strony

Utwórz konto

Zarejestruj nowe konto, to proste!

Zarejestruj nowe konto

Zaloguj się

Posiadasz własne konto? Użyj go!

Zaloguj się


×