Jetzt habe ich Quellcode: <form action="?" method="post"><input type="text" name="adminpass"><input type="submit" value="login"></form>
-
-
Poste mal aus /var/log/nginx/ aus den beiden logs nen paar Zeilen mehr bitte.
Vorallem aus der error.logsieht so aus - als ob der port 8080 bei dir durch i was blockiert wurde?
Da er wohl nach nen restart nicht auf den Port binden kann -
-
In der Error log stande nur das
access log:
188.138.17.205 - - [15/Nov/2015:12:37:58 +0100] "GET / HTTP/1.1" 200 2234 "-" "-" "-"
188.138.17.205 - - [15/Nov/2015:12:37:59 +0100] "GET /sitemap.xml HTTP/1.1" 404 727 "-" "-" "-"
91.236.75.4 - - [15/Nov/2015:22:56:35 +0100] "GET http://www.google.com/reader/about/ HTTP/1.1" 404 727 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)" "-"
89.248.171.165 - - [15/Nov/2015:23:55:19 +0100] "GET / HTTP/1.1" 200 2234 "-" "libwww-perl/6.13" "-"
111.248.62.37 - - [16/Nov/2015:02:58:19 +0100] "CONNECT 163mx03.mxmail.netease.com:25 HTTP/1.0" 400 166 "-" "-" "-"
180.97.106.161 - - [16/Nov/2015:04:58:56 +0100] "GET http://www.ip.cn HTTP/1.1" 200 2234 "-" "curl/7.43.0" "-"
115.231.222.14 - - [16/Nov/2015:09:27:24 +0100] "GET http://zc.qq.com/cgi-bin/commo…0714&r=0.9396579221597607 HTTP/1.1" 404 492 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; 360SE)" "-"
115.231.222.14 - - [16/Nov/2015:11:47:26 +0100] "GET http://zc.qq.com/cgi-bin/commo…0714&r=0.5769694357099023 HTTP/1.1" 404 492 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; 360SE)" "-"
180.97.106.162 - - [16/Nov/2015:12:30:57 +0100] "GET http://www.baidu.com/robots.txt HTTP/1.1" 200 26 "-" "-" "-"
115.231.222.14 - - [16/Nov/2015:14:07:10 +0100] "GET http://zc.qq.com/cgi-bin/commo…0714&r=0.4072243372988525 HTTP/1.1" 404 492 "-" "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; 360SE)" "-" -
00_master.conf:
server {
server_name imscp.domain.de;listen rootserverip:8080;
Deiner master.conf sieht etwas leer aus ?
Diese sollte etwas mehr beinhalten:
server {
server_name DOMAIN ZUM PANEL;listen SERVERIP:8080;
listen [::]:8080 default ipv6only=on;root /var/www/imscp/gui/public;
index index.php index.html;location /errors {
alias /var/www/imscp/gui/public/errordocs;
}error_page 401 /errors/401.html;
error_page 403 /errors/403.html;
error_page 404 /errors/404.html;
error_page 500 /errors/500.html;
error_page 503 /errors/503.html;location /ispLogos {
root /var/www/imscp/gui/data/persistent;
expires 30d;
}location ~ ^/themes/(.*)/assets {
root /var/www/imscp/gui;
expires 30d;
}location ~ ^/(.*)/themes/(.*)/assets {
root /var/www/imscp/gui/plugins;
expires 30d;
}location / {
try_files $uri $uri/ /plugins.php$is_args$args;
}location ~ \.php$ {
try_files $uri $uri/ /plugins.php$is_args$args;
include imscp_fastcgi.conf;
}# SECTION custom BEGIN.
include imscp_pydio.conf;
include imscp_pma.conf;
include imscp_roundcube.conf;
include imscp_rainloop.conf;
# SECTION custom END.
} -
-
server {
server_name imscp.domain.de;listen ip:8080;
listen [::]:8080 default ipv6only=on;root /var/www/imscp/gui/public;
index index.php index.html;location /errors {
alias /var/www/imscp/gui/public/errordocs;
}error_page 401 /errors/401.html;
error_page 403 /errors/403.html;
error_page 404 /errors/404.html;
error_page 500 /errors/500.html;
error_page 503 /errors/503.html;location /ispLogos {
root /var/www/imscp/gui/data/persistent;
expires 30d;
}location ~ ^/themes/(.*)/assets {
root /var/www/imscp/gui;
expires 30d;
}location ~ ^/(.*)/themes/(.*)/assets {
root /var/www/imscp/gui/plugins;
expires 30d;
}location / {
try_files $uri $uri/ /plugins.php$is_args$args;
}location ~ \.php$ {
try_files $uri $uri/ /plugins.php$is_args$args;
include imscp_fastcgi.conf;
}# SECTION custom BEGIN.
include imscp_pydio.conf;
include imscp_pma.conf;
include imscp_roundcube.conf;
include imscp_rainloop.conf;
# SECTION custom END.
}[spoiler] -
hab dir mal ne PN hier geschrieben
-
-
Fehler gefunden - lighttpd lief wegen nen Gameserver WI auch auf port 8080 was nun das Panel geblockt hatte.