
stefjoe
Members-
Posts
26 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
stefjoe's Achievements
-
Warst du zu Beginn auch "Fachpersonal"? Wofür gibt es dann ein Forum, wenn man hier nur dumme Antworten bekommt. Ich bin hier raus! Du Co-Founder.
-
Hallo, gegoogled habe ich schon! Das mal vorab! Und ich habe auch schon einige Einstellungen abgeändert: https://www.tecmint.com/apache-security-tips/ Jetzt stelle ich mir die Frage, wie ich die Sicherheit meines Servers mal testen kann, gibt es da irgendwelche Online Tools? Grüße
-
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Ok, ich habe das __default__ wieder rausgenommen und die IP wieder eingesetzt, läuft jetzt auch so. -
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Habe ich rausgenommen und die Zeile in vhost geändert, jetzt läuft es: <VirtualHost _default_:443> Mir ist aber nicht ganz klar, ob das ein guter Weg ist, es läuft jetzt und das ist schonmal gut ? -
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Daran soll es nicht scheitern: <VirtualHost 37.120.187.174:443> ServerName support.geccom-media.de ServerAlias www.support.geccom-media.de ServerAdmin XXX SSLEngine On SSLProtocol -ALL +TLSv1 +TLSv1.2 SSLCompression Off SSLHonorCipherOrder On SSLCipherSuite ECDH+AESGCM:ECDH+AES256:!aNULL:!MD5:!DSS:!DH:!AES128 SSLVerifyDepth 10 SSLCertificateFile /etc/ssl/froxlor-custom/support.geccom-media.de.crt SSLCertificateKeyFile /etc/ssl/froxlor-custom/support.geccom-media.de.key SSLCACertificateFile /etc/ssl/froxlor-custom/support.geccom-media.de_CA.pem SSLCertificateChainFile /etc/ssl/froxlor-custom/support.geccom-media.de_chain.pem <IfModule mod_headers.c> Header always set Strict-Transport-Security "max-age=0" </IfModule> DocumentRoot "/var/customers/webs/geccom/support/public/" php_admin_value sendmail_path "/usr/sbin/sendmail -t -f XXX" Alias /webalizer "/var/customers/webs/geccom/webalizer" ErrorLog "/var/customers/logs/geccom-error.log" CustomLog "/var/customers/logs/geccom-access.log" combined </VirtualHost> <VirtualHost 37.120.187.174:80> ServerName support.geccom-media.de ServerAlias www.support.geccom-media.de ServerAdmin XXX <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [R=301;L,NE] </IfModule> <IfModule !mod_rewrite.c> Redirect 301 / https://support.geccom-media.de/ </IfModule> </VirtualHost> -
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Ok, das habe ich alles hinbekommen. Zertifikat is valid, aber ich erhalte jetzt. Crons habe ich durchlaufen lassen und bekomme keine Fehlermeldungen. SSL ist auch aktiviert a2enmod ssl , Logs sind leer ERR_SSL_PROTOCOL_ERROR Das habe ich auch schon versucht, Fehlermeldung bleibt aber // private key und csr erstellen openssl req -new -newkey rsa:4096 -nodes -sha256 -out server-name.csr -keyout server-name.key // selbst-signiertes cert erstellen openssl x509 -req -days 3650 -in server-name.csr -signkey server-name.key -out server-name.crt root@v22019027810883731:~# cat /etc/apache2/ports.conf # If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000-default.conf Listen 80 <IfModule ssl_module> Listen 443 </IfModule> <IfModule mod_gnutls.c> Listen 443 </IfModule> -
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Gibt mir sowas aus: ● apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Sun 2019-03-10 17:24:37 CET; 2h 50min ago Process: 20946 ExecStop=/usr/sbin/apachectl stop (code=exited, status=1/FAILURE) Process: 20892 ExecReload=/usr/sbin/apachectl graceful (code=exited, status=1/FAILURE) Process: 21513 ExecStart=/usr/sbin/apachectl start (code=exited, status=1/FAILURE) Main PID: 20219 (code=exited, status=0/SUCCESS) Mär 10 17:24:37 v22019027810883731 systemd[1]: Starting The Apache HTTP Server... Mär 10 17:24:37 v22019027810883731 apachectl[21513]: AH00526: Syntax error on line 6 of /etc/apache2/sites-enabled/30_froxlor_normal_vhost_api.geccom-media.de.conf: Mär 10 17:24:37 v22019027810883731 apachectl[21513]: <VirtualHost> directive requires additional arguments Mär 10 17:24:37 v22019027810883731 apachectl[21513]: Action 'start' failed. Mär 10 17:24:37 v22019027810883731 apachectl[21513]: The Apache error log may have more information. Mär 10 17:24:37 v22019027810883731 systemd[1]: apache2.service: Control process exited, code=exited status=1 Mär 10 17:24:37 v22019027810883731 systemd[1]: Failed to start The Apache HTTP Server. Mär 10 17:24:37 v22019027810883731 systemd[1]: apache2.service: Unit entered failed state. Mär 10 17:24:37 v22019027810883731 systemd[1]: apache2.service: Failed with result 'exit-code'. -
<VirtualHost> directive requires additional arguments
stefjoe replied to stefjoe's question in German / Deutsch
Im Grunde habe ich mich daran gehalten: https://nichteinschalten.de/froxlor-mit-letsencrypt-verbinden/ Und als ich die acme.conf erstellt und das Snippet eingetragen habe, kam die Fehlermeldung. Jetzt habe ich keinen Zugriff mehr auf /froxlor, /phpmyadmin usw., mit der Meldung eine ERR_CONNECTION_REFUSED Die Apache logs sind leer. -
Hallo, nachdem ich Letsencrypt versucht habe einzurichten, erhalte ich folgende Meldung, nach einem Apache restart: <VirtualHost> directive requires additional arguments Es fehlt die IP in der normalen .conf <VirtualHost > ServerName api.XXX.de ServerAlias *.api.XXX.de ServerAdmin XXXXXXX DocumentRoot "/var/customers/webs/XXX/api/public/" php_admin_value sendmail_path "/usr/sbin/sendmail -t -f XXXXXXX" php_admin_value open_basedir "/var/customers/webs/XXX/api/public:/tmp" Alias /webalizer "/var/customers/webs/XXX/webalizer" ErrorLog "/var/customers/logs/XXX-error.log" CustomLog "/var/customers/logs/XXX-access.log" combined </VirtualHost> Jetzt habe ich auf nichts mehr Zugriff. Muss ich in der DB die IP irgendwo eintragen? Wenn ja wo?
-
Jetzt hab ich es! Es lag an dieser Zeile in der index.php require __DIR__.'/../vendor/autoload.php'; Die habe ich geändert in dirname(__DIR__).'/../vendor/autoload.php'; Danke für die Hilfe von euch :-)
-
Symfony 4.2, eine normale index.php läuft. Das komische ist, dass Symfony auf der Hauptdomain läuft, aber nicht auf der Subdomain
-
Zeichen sind entfernt, aber den 500er erhalte ich trotzdem noch. [Sat Mar 09 11:20:47.902237 2019] [mpm_prefork:notice] [pid 23477] AH00169: caught SIGTERM, shutting down [Sat Mar 09 11:38:39.936974 2019] [mpm_prefork:notice] [pid 31373] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations [Sat Mar 09 11:38:39.937052 2019] [core:notice] [pid 31373] AH00094: Command line: '/usr/sbin/apache2' [Sat Mar 09 11:39:29.126891 2019] [mpm_prefork:notice] [pid 31373] AH00169: caught SIGTERM, shutting down [Sat Mar 09 11:39:29.235342 2019] [mpm_prefork:notice] [pid 31512] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations [Sat Mar 09 11:39:29.235405 2019] [core:notice] [pid 31512] AH00094: Command line: '/usr/sbin/apache2' [Sat Mar 09 11:58:03.826088 2019] [mpm_prefork:notice] [pid 31512] AH00169: caught SIGTERM, shutting down [Sat Mar 09 11:58:22.369127 2019] [mpm_prefork:notice] [pid 31802] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations [Sat Mar 09 11:58:22.369182 2019] [core:notice] [pid 31802] AH00094: Command line: '/usr/sbin/apache2'
-
Jetzt habe ich auf einmal 2 error.log :-/
-
[Sat Mar 09 06:25:02.611106 2019] [mpm_prefork:notice] [pid 23477] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations [Sat Mar 09 06:25:02.611155 2019] [core:notice] [pid 23477] AH00094: Command line: '/usr/sbin/apache2' [Sat Mar 09 06:50:17.235491 2019] [authz_core:error] [pid 27435] [client 188.36.88.164:54703] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 07:07:54.988105 2019] [authz_core:error] [pid 27517] [client 190.103.204.138:39604] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 07:31:17.065399 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:28422] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 07:31:17.405311 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:28519] AH01630: client denied by server configuration: /var/www/webdav [Sat Mar 09 07:31:17.737131 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/Appaebb7825.php [Sat Mar 09 07:31:17.903269 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/help.php [Sat Mar 09 07:31:18.069031 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/java.php [Sat Mar 09 07:31:18.234905 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/_query.php [Sat Mar 09 07:31:18.400747 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/test.php [Sat Mar 09 07:31:18.566485 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/db_cts.php [Sat Mar 09 07:31:18.732279 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/db_pma.php [Sat Mar 09 07:31:18.898074 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/logon.php [Sat Mar 09 07:31:19.064117 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/help-e.php [Sat Mar 09 07:31:19.230052 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/license.php [Sat Mar 09 07:31:19.395871 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/log.php [Sat Mar 09 07:31:19.561896 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/hell.php [Sat Mar 09 07:31:19.727685 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/pmd_online.php [Sat Mar 09 07:31:19.893401 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/x.php [Sat Mar 09 07:31:20.460926 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/shell.php [Sat Mar 09 07:31:20.626725 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/htdocs.php [Sat Mar 09 07:31:20.792522 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/desktop.ini.php [Sat Mar 09 07:31:21.357239 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/z.php [Sat Mar 09 07:31:21.523012 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/lala.php [Sat Mar 09 07:31:21.688923 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/lala-dpr.php [Sat Mar 09 07:31:22.252892 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/wpc.php [Sat Mar 09 07:31:22.418901 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/wpo.php [Sat Mar 09 07:31:22.584678 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/text.php [Sat Mar 09 07:31:22.750438 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/wp-config.php [Sat Mar 09 07:31:22.916243 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/muhstik.php [Sat Mar 09 07:31:23.082263 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/muhstik2.php [Sat Mar 09 07:31:23.248317 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/muhstiks.php [Sat Mar 09 07:31:23.414214 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/muhstik-dpr.php [Sat Mar 09 07:31:23.579973 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/lol.php [Sat Mar 09 07:31:23.745700 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/uploader.php [Sat Mar 09 07:31:23.911998 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/cmd.php [Sat Mar 09 07:31:24.077913 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/cmv.php [Sat Mar 09 07:31:24.243728 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/cmdd.php [Sat Mar 09 07:31:24.409538 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/knal.php [Sat Mar 09 07:31:24.575392 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/cmd.php [Sat Mar 09 07:31:24.741226 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/shell.php [Sat Mar 09 07:31:24.907227 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/appserv.php [Sat Mar 09 07:31:25.073039 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/scripts [Sat Mar 09 07:31:25.404849 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/phpMyAdmin [Sat Mar 09 07:31:25.736304 2019] [authz_core:error] [pid 27433] [client 123.206.67.103:28614] AH01630: client denied by server configuration: /var/www/phpMyAdmin [Sat Mar 09 07:31:26.076143 2019] [authz_core:error] [pid 27434] [client 123.206.67.103:30975] AH01630: client denied by server configuration: /var/www/plugins [Sat Mar 09 07:31:26.245954 2019] [authz_core:error] [pid 27434] [client 123.206.67.103:30975] AH01630: client denied by server configuration: /var/www/cacti [Sat Mar 09 07:31:26.576754 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/rxr.php [Sat Mar 09 07:31:27.212556 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/undx.php [Sat Mar 09 07:31:27.377887 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/payload.php [Sat Mar 09 07:31:27.543349 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wuwu11.php [Sat Mar 09 07:31:27.708686 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xw.php [Sat Mar 09 07:31:27.874144 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xw1.php [Sat Mar 09 07:31:28.039630 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/9678.php [Sat Mar 09 07:31:28.205265 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wc.php [Sat Mar 09 07:31:28.370814 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xx.php [Sat Mar 09 07:31:28.536454 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/s.php [Sat Mar 09 07:31:29.100709 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/w.php [Sat Mar 09 07:31:29.266259 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/sheep.php [Sat Mar 09 07:31:29.431504 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qaq.php [Sat Mar 09 07:31:29.597032 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/db.init.php [Sat Mar 09 07:31:29.762538 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/db_session.init.php [Sat Mar 09 07:31:29.927905 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/db__.init.php [Sat Mar 09 07:31:30.093460 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wp-admins.php [Sat Mar 09 07:31:30.258819 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/m.php [Sat Mar 09 07:31:30.424220 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/db_dataml.php [Sat Mar 09 07:31:31.372726 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/db_desql.php [Sat Mar 09 07:31:31.537949 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/mx.php [Sat Mar 09 07:31:31.703370 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wshell.php [Sat Mar 09 07:31:31.869008 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xshell.php [Sat Mar 09 07:31:32.034400 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qq.php [Sat Mar 09 07:31:32.199842 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/conflg.php [Sat Mar 09 07:31:32.365367 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/conflg.php [Sat Mar 09 07:31:33.300537 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/lindex.php [Sat Mar 09 07:31:33.465899 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/phpstudy.php [Sat Mar 09 07:31:33.631500 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/phpStudy.php [Sat Mar 09 07:31:33.796861 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/weixiao.php [Sat Mar 09 07:31:33.962244 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/feixiang.php [Sat Mar 09 07:31:34.127656 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ak47.php [Sat Mar 09 07:31:34.293064 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ak48.php [Sat Mar 09 07:31:34.458415 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xiao.php [Sat Mar 09 07:31:34.623900 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/yao.php [Sat Mar 09 07:31:34.789255 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/defect.php [Sat Mar 09 07:31:34.954710 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/webslee.php [Sat Mar 09 07:31:35.119990 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/q.php [Sat Mar 09 07:31:35.285310 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/pe.php [Sat Mar 09 07:31:35.450701 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/hm.php [Sat Mar 09 07:31:35.616041 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/cainiao.php [Sat Mar 09 07:31:35.781359 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuoshou.php [Sat Mar 09 07:31:36.332814 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuo.php [Sat Mar 09 07:31:36.498172 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/aotu.php [Sat Mar 09 07:31:36.663585 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/aotu7.php [Sat Mar 09 07:31:36.829055 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/cmd.php [Sat Mar 09 07:31:36.994684 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/bak.php [Sat Mar 09 07:31:37.160063 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/system.php [Sat Mar 09 07:31:37.325518 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/l6.php [Sat Mar 09 07:31:37.491015 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/l7.php [Sat Mar 09 07:31:37.656550 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/l8.php [Sat Mar 09 07:31:37.822027 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/q.php [Sat Mar 09 07:31:37.987405 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/56.php [Sat Mar 09 07:31:38.152816 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/mz.php [Sat Mar 09 07:31:38.318255 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xx.php [Sat Mar 09 07:31:38.483692 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/yumo.php [Sat Mar 09 07:31:38.649177 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/min.php [Sat Mar 09 07:31:38.814584 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wan.php [Sat Mar 09 07:31:38.980261 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/wanan.php [Sat Mar 09 07:31:39.145782 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ssaa.php [Sat Mar 09 07:31:39.311370 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qq.php [Sat Mar 09 07:31:39.476760 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/aw.php [Sat Mar 09 07:31:39.642174 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/12.php [Sat Mar 09 07:31:39.807596 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/hh.php [Sat Mar 09 07:31:39.972952 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ak.php [Sat Mar 09 07:31:40.138460 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ip.php [Sat Mar 09 07:31:40.303825 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/infoo.php [Sat Mar 09 07:31:40.469337 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qq.php [Sat Mar 09 07:31:40.634716 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qwe.php [Sat Mar 09 07:31:40.800099 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/1213.php [Sat Mar 09 07:31:40.965640 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/post.php [Sat Mar 09 07:31:41.131152 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/aaaa.php [Sat Mar 09 07:31:41.296635 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/h1.php [Sat Mar 09 07:31:41.462023 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/test.php [Sat Mar 09 07:31:41.627447 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/3.php [Sat Mar 09 07:31:41.792743 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/phpinfi.php [Sat Mar 09 07:31:41.958118 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/9510.php [Sat Mar 09 07:31:42.123644 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/python.php [Sat Mar 09 07:31:42.289044 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/default.php [Sat Mar 09 07:31:42.454501 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/sean.php [Sat Mar 09 07:31:42.619905 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/app.php [Sat Mar 09 07:31:43.180760 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/help.php [Sat Mar 09 07:31:43.346035 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/tiandi.php [Sat Mar 09 07:31:43.511455 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/miao.php [Sat Mar 09 07:31:43.676891 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/xz.php [Sat Mar 09 07:31:43.842436 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/linuxse.php [Sat Mar 09 07:31:44.007804 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuoindex.php [Sat Mar 09 07:31:44.173315 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zshmindex.php [Sat Mar 09 07:31:44.338848 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/tomcat.php [Sat Mar 09 07:31:44.504446 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ceshi.php [Sat Mar 09 07:31:44.669857 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/1hou.php [Sat Mar 09 07:31:44.835352 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/ou2.php [Sat Mar 09 07:31:45.000823 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuos.php [Sat Mar 09 07:31:45.166168 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuoss.php [Sat Mar 09 07:31:45.331620 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/zuoshss.php [Sat Mar 09 07:31:45.497308 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/boots.php [Sat Mar 09 07:31:45.662835 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/she.php [Sat Mar 09 07:31:45.828264 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/s.php [Sat Mar 09 07:31:45.993740 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/qw.php [Sat Mar 09 07:31:46.159340 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/test.php [Sat Mar 09 07:31:46.324847 2019] [authz_core:error] [pid 27432] [client 123.206.67.103:31114] AH01630: client denied by server configuration: /var/www/caonma.php [Sat Mar 09 07:31:46.664562 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/wcp.php [Sat Mar 09 07:31:46.834378 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/u.php [Sat Mar 09 07:31:47.004349 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/uuu.php [Sat Mar 09 07:31:47.174229 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/sss.php [Sat Mar 09 07:31:47.344238 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/ss.php [Sat Mar 09 07:31:47.514198 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/sss.php [Sat Mar 09 07:31:47.684187 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/mazi.php [Sat Mar 09 07:31:47.854171 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/phpini.php [Sat Mar 09 07:31:48.024170 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:31:48.194097 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/2.php [Sat Mar 09 07:31:48.364268 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/core.php [Sat Mar 09 07:31:48.534160 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qaz.php [Sat Mar 09 07:31:48.704152 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/sha.php [Sat Mar 09 07:31:48.874166 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/ppx.php [Sat Mar 09 07:31:49.044001 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:31:49.213899 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/confg.php [Sat Mar 09 07:31:49.384022 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/conf1g.php [Sat Mar 09 07:31:49.554129 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/confg.php [Sat Mar 09 07:31:49.724046 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/confg.php [Sat Mar 09 07:31:49.893957 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/confg.php [Sat Mar 09 07:31:50.449265 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/ver.php [Sat Mar 09 07:31:50.619134 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/hack.php [Sat Mar 09 07:31:50.789088 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qa.php [Sat Mar 09 07:31:50.959232 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/Ss.php [Sat Mar 09 07:31:51.129334 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xxx.php [Sat Mar 09 07:31:51.299432 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/92.php [Sat Mar 09 07:31:51.469343 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/z.php [Sat Mar 09 07:31:51.639357 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/x.php [Sat Mar 09 07:31:51.809335 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/dexgp.php [Sat Mar 09 07:31:51.979463 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/nuoxi.php [Sat Mar 09 07:31:52.149438 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/godkey.php [Sat Mar 09 07:31:52.319662 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/okokok.php [Sat Mar 09 07:31:52.489863 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/erwa.php [Sat Mar 09 07:31:52.660092 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/pma.php [Sat Mar 09 07:31:52.830167 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/ruyi.php [Sat Mar 09 07:31:53.000262 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/51314.php [Sat Mar 09 07:31:53.170378 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/5201314.php [Sat Mar 09 07:31:53.340548 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/fusheng.php [Sat Mar 09 07:31:53.510670 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/general.php [Sat Mar 09 07:31:53.680487 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/repeat.php [Sat Mar 09 07:31:53.850629 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/ldw.php [Sat Mar 09 07:31:54.417298 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/api.php [Sat Mar 09 07:31:54.969375 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/s1.php [Sat Mar 09 07:31:55.139557 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaodai.php [Sat Mar 09 07:31:55.309889 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/hello.php [Sat Mar 09 07:31:55.480160 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/hello.php [Sat Mar 09 07:31:55.650090 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/admn.php [Sat Mar 09 07:31:55.819909 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/hell.php [Sat Mar 09 07:31:55.989908 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xp.php [Sat Mar 09 07:31:56.561205 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:31:56.731059 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/2.php [Sat Mar 09 07:31:56.901108 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/p.php [Sat Mar 09 07:31:57.071286 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:31:57.241320 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/a.php [Sat Mar 09 07:31:57.411447 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/m.php [Sat Mar 09 07:31:57.581612 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/conf.php [Sat Mar 09 07:31:57.751806 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/123.php [Sat Mar 09 07:31:57.921884 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/HX.php [Sat Mar 09 07:31:58.091880 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/diy.php [Sat Mar 09 07:31:58.261764 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/666.php [Sat Mar 09 07:31:58.431807 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/777.php [Sat Mar 09 07:31:58.601777 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qwq.php [Sat Mar 09 07:31:58.771773 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qwqw.php [Sat Mar 09 07:31:58.941840 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/.php [Sat Mar 09 07:31:59.111762 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/infos.php [Sat Mar 09 07:31:59.281724 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/x.php [Sat Mar 09 07:31:59.451796 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/lucky.php [Sat Mar 09 07:31:59.621834 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/htfr.php [Sat Mar 09 07:31:59.791751 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/zzk.php [Sat Mar 09 07:31:59.961877 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/toor.php [Sat Mar 09 07:32:00.529332 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/uu.php [Sat Mar 09 07:32:00.699482 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/aa.php [Sat Mar 09 07:32:00.869487 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/wb.php [Sat Mar 09 07:32:01.039427 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/yj.php [Sat Mar 09 07:32:01.209565 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/z.php [Sat Mar 09 07:32:01.379721 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/7.php [Sat Mar 09 07:32:01.549840 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaoma.php [Sat Mar 09 07:32:01.719868 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaomae.php [Sat Mar 09 07:32:01.889938 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaomar.php [Sat Mar 09 07:32:02.059971 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qq.php [Sat Mar 09 07:32:02.229954 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/data.php [Sat Mar 09 07:32:02.399990 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/log.php [Sat Mar 09 07:32:02.569949 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/fack.php [Sat Mar 09 07:32:02.740120 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/angge.php [Sat Mar 09 07:32:02.910115 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/cxfm666.php [Sat Mar 09 07:32:03.080305 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/db.php [Sat Mar 09 07:32:03.250539 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/hacly.php [Sat Mar 09 07:32:03.793434 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaomo.php [Sat Mar 09 07:32:03.963505 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaoyu.php [Sat Mar 09 07:32:04.133833 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/xiaohei.php [Sat Mar 09 07:32:04.304091 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/j.php [Sat Mar 09 07:32:04.474437 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/qq5262.php [Sat Mar 09 07:32:04.644839 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/lost.php [Sat Mar 09 07:32:04.815043 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/php.php [Sat Mar 09 07:32:04.985417 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/win.php [Sat Mar 09 07:32:05.155571 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/win1.php [Sat Mar 09 07:32:05.325564 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/linux.php [Sat Mar 09 07:32:05.496121 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/linux1.php [Sat Mar 09 07:32:05.666152 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/cc.php [Sat Mar 09 07:32:05.836070 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/x.php [Sat Mar 09 07:32:06.006095 2019] [authz_core:error] [pid 27436] [client 123.206.67.103:36978] AH01630: client denied by server configuration: /var/www/lanke.php [Sat Mar 09 07:32:07.107446 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/neko.php [Sat Mar 09 07:32:07.277584 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/super.php [Sat Mar 09 07:32:07.448082 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/cere.php [Sat Mar 09 07:32:07.618240 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/aaa.php [Sat Mar 09 07:32:07.788535 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/Administrator.php [Sat Mar 09 07:32:07.958747 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/liangchen.php [Sat Mar 09 07:32:08.128852 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/lucky.php [Sat Mar 09 07:32:08.299243 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/meng.php [Sat Mar 09 07:32:08.469594 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/no.php [Sat Mar 09 07:32:08.639821 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/mysql.php [Sat Mar 09 07:32:08.810047 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/Updata.php [Sat Mar 09 07:32:09.393364 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/xxxx.php [Sat Mar 09 07:32:09.563731 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/guai.php [Sat Mar 09 07:32:09.734119 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/ljb.php [Sat Mar 09 07:32:09.904394 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/www.php [Sat Mar 09 07:32:10.074711 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:32:10.244971 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/chaoda.php [Sat Mar 09 07:32:10.415300 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/qq.php [Sat Mar 09 07:32:10.585578 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/MCLi.php [Sat Mar 09 07:32:11.153360 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/MCLi.php [Sat Mar 09 07:32:11.323671 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/coon.php [Sat Mar 09 07:32:11.494092 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/1.php [Sat Mar 09 07:32:11.664135 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/zxc1.php [Sat Mar 09 07:32:11.834320 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/zxc0.php [Sat Mar 09 07:32:12.004604 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/zxc1.php [Sat Mar 09 07:32:12.174993 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/zxc2.php [Sat Mar 09 07:32:12.345447 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/indexa.php [Sat Mar 09 07:32:12.515784 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/lx.php [Sat Mar 09 07:32:12.686027 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/cn.php [Sat Mar 09 07:32:12.856444 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/api.php [Sat Mar 09 07:32:13.026695 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/index1.php [Sat Mar 09 07:32:13.197091 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/info.php [Sat Mar 09 07:32:13.367417 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/info1.php [Sat Mar 09 07:32:13.537641 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/aaaaaa1.php [Sat Mar 09 07:32:13.707904 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/up.php [Sat Mar 09 07:32:13.878027 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/test123.php [Sat Mar 09 07:32:14.048246 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/test123.php [Sat Mar 09 07:32:14.218570 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/fb.php [Sat Mar 09 07:32:14.388947 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/paylog.php [Sat Mar 09 07:32:14.559156 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/paylog.php [Sat Mar 09 07:32:14.729502 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/x.php [Sat Mar 09 07:32:14.899789 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/cnm.php [Sat Mar 09 07:32:15.070299 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/1ndex.php [Sat Mar 09 07:32:15.240526 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/51.php [Sat Mar 09 07:32:15.410860 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/cadre.php [Sat Mar 09 07:32:15.581126 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/mm.php [Sat Mar 09 07:32:15.751344 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/test.php [Sat Mar 09 07:32:15.921680 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/1q.php [Sat Mar 09 07:32:16.091898 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/1111.php [Sat Mar 09 07:32:16.262251 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/errors.php [Sat Mar 09 07:32:16.432682 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/q.php [Sat Mar 09 07:32:16.603064 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/lanyecn.php [Sat Mar 09 07:32:16.773466 2019] [authz_core:error] [pid 27517] [client 123.206.67.103:43474] AH01630: client denied by server configuration: /var/www/index.php [Sat Mar 09 07:42:13.901138 2019] [authz_core:error] [pid 28121] [client 123.206.67.103:18091] AH01630: client denied by server configuration: /var/www/manager [Sat Mar 09 08:06:37.566373 2019] [authz_core:error] [pid 27436] [client 125.64.94.200:43959] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 08:25:19.916887 2019] [authz_core:error] [pid 28121] [client 186.183.237.209:37342] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 08:30:24.051347 2019] [authz_core:error] [pid 27434] [client 106.1.52.102:60739] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 08:41:42.296316 2019] [authz_core:error] [pid 27436] [client 80.78.79.94:41802] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 09:08:11.639168 2019] [authz_core:error] [pid 27436] [client 59.3.110.11:35892] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 09:35:32.626316 2019] [authz_core:error] [pid 27434] [client 14.184.191.46:58614] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 09:47:35.179774 2019] [authz_core:error] [pid 27436] [client 185.98.227.63:44029] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 10:58:47.362559 2019] [authz_core:error] [pid 27517] [client 52.53.201.78:56892] AH01630: client denied by server configuration: /var/www/ [Sat Mar 09 11:02:05.091171 2019] [authz_core:error] [pid 27435] [client 23.241.204.31:55882] AH01630: client denied by server configuration: /var/www/mysql [Sat Mar 09 11:02:05.684206 2019] [authz_core:error] [pid 27433] [client 23.241.204.31:56654] AH01630: client denied by server configuration: /var/www/mysql [Sat Mar 09 11:02:06.311810 2019] [authz_core:error] [pid 27434] [client 23.241.204.31:56886] AH01630: client denied by server configuration: /var/www/mysql [Sat Mar 09 11:02:07.006104 2019] [authz_core:error] [pid 27432] [client 23.241.204.31:57216] AH01630: client denied by server configuration: /var/www/mysql
-
Hallo zusammen, ja steht da, aber ich weiß nicht wie man die anwendet. Jetzt bekomme ich diese Fehlermeldung: AH00526: Syntax error on line 171 of /etc/apache2/apache2.conf: Illegal option MultiViews\xef\xbb\xbf Action 'restart' failed.