# This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see # # for a discussion of each configuration directive. # # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so "logs/foo.log" # with ServerRoot set to "/etc/httpd" will be interpreted by the # server as "/etc/httpd/logs/foo.log". # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # Don't give away too much information about all the subcomponents # we are running. Comment out this line if you don't mind remote sites # finding out what major optional modules you are running ServerTokens OS # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation # (available at ); # you will save yourself a lot of trouble. # # Do NOT add a slash at the end of the directory path. # ServerRoot "/etc/httpd" # # PidFile: The file in which the server should record its process # identification number when it starts. Note the PIDFILE variable in # /etc/sysconfig/httpd must be set appropriately if this location is # changed. # PidFile run/httpd.pid # # Timeout: The number of seconds before receives and sends time out. # Timeout 60 # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate. # KeepAlive Off # # MaxKeepAliveRequests: The maximum number of requests to allow # during a persistent connection. Set to 0 to allow an unlimited amount. # We recommend you leave this number high, for maximum performance. # MaxKeepAliveRequests 100 # # KeepAliveTimeout: Number of seconds to wait for the next request from the # same client on the same connection. # KeepAliveTimeout 15 ## ## Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # ServerLimit: maximum value for MaxClients for the lifetime of the server # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 # worker MPM # StartServers: initial number of server processes to start # MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 4 MaxClients 300 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the # directive. # # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses (0.0.0.0) # Listen 194.85.70.32:80 #Listen 80 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_alias_module modules/mod_authn_alias.so LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_default_module modules/mod_authn_default.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_default_module modules/mod_authz_default.so LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule logio_module modules/mod_logio.so LoadModule env_module modules/mod_env.so LoadModule ext_filter_module modules/mod_ext_filter.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule mime_module modules/mod_mime.so LoadModule dav_module modules/mod_dav.so LoadModule status_module modules/mod_status.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule info_module modules/mod_info.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule negotiation_module modules/mod_negotiation.so LoadModule dir_module modules/mod_dir.so LoadModule actions_module modules/mod_actions.so LoadModule speling_module modules/mod_speling.so LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so LoadModule substitute_module modules/mod_substitute.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule suexec_module modules/mod_suexec.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule cgi_module modules/mod_cgi.so LoadModule version_module modules/mod_version.so # # The following modules are not loaded by default: # #LoadModule asis_module modules/mod_asis.so #LoadModule authn_dbd_module modules/mod_authn_dbd.so #LoadModule cern_meta_module modules/mod_cern_meta.so #LoadModule cgid_module modules/mod_cgid.so #LoadModule dbd_module modules/mod_dbd.so #LoadModule dumpio_module modules/mod_dumpio.so #LoadModule filter_module modules/mod_filter.so #LoadModule ident_module modules/mod_ident.so #LoadModule log_forensic_module modules/mod_log_forensic.so #LoadModule unique_id_module modules/mod_unique_id.so # # # Load config files from the config directory "/etc/httpd/conf.d". # Include conf.d/*.conf # # ExtendedStatus controls whether Apache will generate "full" status # information (ExtendedStatus On) or just basic information (ExtendedStatus # Off) when the "server-status" handler is called. The default is Off. # #ExtendedStatus On # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # . On SCO (ODT 3) use "User nouser" and "Group nogroup". # . On HPUX you may not be able to use shared memory as nobody, and the # suggested workaround is to create a user www and use that user. # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) # when the value of (unsigned)Group is above 60000; # don't use Group #-1 on these systems! # User apache Group apache ### Section 2: 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # definition. These values also provide defaults for # any containers you may define later in the file. # # All of these directives may appear inside containers, # in which case these default settings will be overridden for the # virtual host being defined. # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If this is not set to valid DNS name for your host, server-generated # redirections will not work. See also the UseCanonicalName directive. # # If your host doesn't have a registered DNS name, enter its IP address here. # You will have to access it by its address anyway, and this will make # redirections work in a sensible way. # ServerName saturn.itep.ru # # UseCanonicalName: Determines how Apache constructs self-referencing # URLs and the SERVER_NAME and SERVER_PORT variables. # When set "Off", Apache will use the Hostname and Port supplied # by the client. When set "On", Apache will use the value of the # ServerName directive. # #UseCanonicalName Off UseCanonicalName On # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # #DocumentRoot "/var/www/html" DocumentRoot "/home/httpd/htdocs" # # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdirectories). # # First, we configure the "default" to be a very restrictive set of # features. # Options FollowSymLinks AllowOverride None # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # This should be changed to whatever you set DocumentRoot to. # # # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.2/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride None # # Controls who can get stuff from this server. # Order allow,deny Allow from all # # **** UserDir: The name of the directory that is appended onto a user's home # directory if a ~user request is received. # # The path to the end user account 'public_html' directory must be # accessible to the webserver userid. This usually means that ~userid # must have permissions of 711, ~userid/public_html must have permissions # of 755, and documents contained therein must be world-readable. # Otherwise, the client will only receive a "403 Forbidden" message. # # See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden # # # UserDir is disabled by default since it can confirm the presence # of a username on the system (depending on home directory # permissions). # UserDir disabled # # To enable requests to /~user/ to serve the user's public_html # directory, remove the "UserDir disabled" line above, and uncomment # the following line instead: # #UserDir public_html # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # # The index.html.var file (a type-map) is used to deliver content- # negotiated documents. The MultiViews Option can be used for the # same purpose, but it is much slower. # DirectoryIndex index.htm index.html.var # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Order allow,deny Deny from all # Satisfy All # # TypesConfig describes where the mime.types file (or equivalent) is # to be found. # TypesConfig /etc/mime.types # # DefaultType is the default MIME type the server will use for a document # if it cannot otherwise determine one, such as from filename extensions. # If your server contains mostly text or HTML documents, "text/plain" is # a good value. If most of your content is binary, such as applications # or images, you may want to use "application/octet-stream" instead to # keep browsers from trying to display binary files as though they are # text. # DefaultType text/plain # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # # MIMEMagicFile /usr/share/magic.mime MIMEMagicFile conf/magic # # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the # nameserver. # HostnameLookups Off # # EnableMMAP: Control whether memory-mapping is used to deliver # files .... # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. ErrorLog /var/log/httpd/error_log # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the realname directory are treated as applications and # run by the server when requested rather than as documents sent to the client. # The same rules about trailing "/" apply to ScriptAlias directives as to # Alias. # # ScriptAlias / cgi-bin/ "/var/www/cgi-bin/ ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/" # # var/www/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # # AllowOverride None # Options None Options ExecCGI Order allow,deny Allow from all # # ReadmeName is the name of the README file the server will look for by # default, and append to directory listings. # # HeaderName is the name of a file which should be prepended to # directory indexes. ReadmeName README.html HeaderName HEADER.html #ScriptAliaix this and get # the reference data for rfc1766 cleaned up. # # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl) # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de) # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja) # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn) # Norwegian (no) - Polish (pl) - Portugese (pt) # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv) # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW) # AddLanguage ca .ca AddLanguage cs .cz .cs AddLanguage da .dk AddLanguage de .de AddLanguage el .el AddLanguage en .en AddLanguage eo .eo AddLanguage es .es AddLanguage et .et AddLanguage fr .fr AddLanguage he .he AddLanguage hr .hr AddLanguage it .it AddLanguage ja .ja AddLanguage ko .ko AddLanguage ltz .ltz AddLanguage nl .nl AddLanguage nn .nn AddLanguage no .no AddLanguage pl .po AddLanguage pt .pt AddLanguage pt-BR .pt-br AddLanguage ru .ru AddLanguage sv .sv AddLanguage zh-CN .zh-cn AddLanguage zh-TW .zh-tw # # LanguagePriority allows you to give precedence to some languages # in case of a tie during content negotiation. # # Just list the languages in decreasing order of preference. We have # more or less alphabetized them here. You probably want to change this. # LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW # # ForceLanguagePriority allows you to serve a result page rather than # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) # [in case no accepted languages matched the available variants] # ForceLanguagePriority Prefer Fallback # # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset windows-1251 AddCharset ISO-8859-1 .iso8859-1 .latin1 AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen AddCharset ISO-8859-3 .iso8859-3 .latin3 AddCharset ISO-8859-4 .iso8859-4 .latin4 AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk AddCharset ISO-2022-JP .iso2022-jp .jis AddCharset ISO-2022-KR .iso2022-kr .kis AddCharset ISO-2022-CN .iso2022-cn .cis AddCharset Big5 .Big5 .big5 # For russian, more than one charset is used (depends on client, mostly): AddCharset WINDOWS-1251 .cp-1251 .win-1251 AddCharset CP866 .cp866 AddCharset KOI8-r .koi8-r .koi8-ru AddCharset KOI8-ru .koi8-uk .ua AddCharset ISO-10646-UCS-2 .ucs2 AddCharset ISO-10646-UCS-4 .ucs4 AddCharset UTF-8 .utf8 # # AddType allows you to add to or override the MIME configuration # file mime.types for specific file types. # #AddType application/x-tar .tgz # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # Despite the name similarity, the following Add* directives have nothing # to do with the FancyIndexing customization directives above. # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # MIME-types for downloading Certificates and CRLs # AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl # # AddHandler allows you to map certain file extensions to "handlers": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add "ExecCGI" to the "Options" directive.) # # AddHandler cgi-script .cgi # AddHandler cgi-wrapper .php # AddHandler cgi-wrapper .cgi # #Action cgi-wrapper /cgi-bin/cgiwrap # # For files that include their own HTTP headers: # #AddHandler send-as-is asis # # For type maps (negotiated resources): # (This is enabled by default to allow the Apache "It Worked" page # to be distributed in multiple languages.) # AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # AddType text/html .shtml AddOutputFilter INCLUDES .shtml # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location # # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # Putting this all together, we can internationalize error responses. # # We use Alias to redirect any /error/HTTP_.html.var response to # our collection of by-error message multi-language collections. We use # includes to substitute the appropriate text. # # You can modify the messages' appearance without changing any of the # default HTTP_.html.var files by adding the line: # # Alias /error/include/ "/your/include/path/" # # which allows you to create your own set of files by starting with the # /var/www/error/include/ files and # copying them to /your/include/path/, even on a per-VirtualHost basis. # Alias /error/ "/var/log/httpd/" AllowOverride None Options IncludesNoExec AddOutputFilter Includes html AddHandler type-map var Order allow,deny Allow from all LanguagePriority en es de fr ForceLanguagePriority Prefer Fallback # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var # ErrorDocument 410 /error/HTTP_GONE.html.var # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # # The following directives modify normal HTTP response behavior to # handle known problems with browser implementations. # BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 # # The following directive disables redirects on non-GET requests for # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "MS FrontPage" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully BrowserMatch "^gnome-vfs/1.0" redirect-carefully BrowserMatch "^XML Spy" redirect-carefully BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully # # Allow server status reports generated by mod_status, # with the URL of http://servername/server-status # Change the ".example.com" to match your domain to enable. # # Enable/disable the handling of HTTP/1.1 "Via:" headers. # ("Full" adds the server version; "Block" removes all outgoing Via: headers) # Set to one of: Off | On | Full | Block # #ProxyVia On # # To enable a cache of proxied content, uncomment the following lines. # See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details. # # # CacheEnable disk / # CacheRoot "/var/cache/mod_proxy" # # # # End of proxy directives. ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # NameVirtualHost 194.85.70.32 # Where do we put the lock and pif files? #NameVirtualHost *:80 # # NOTE: NameVirtualHost cannot be used without a port specifier # (e.g. :80) if mod_ssl is being used, due to the nature of the # SSL protocol. # # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. # # # ServerAdmin webmaster@dummy-host.example.com # DocumentRoot /www/docs/dummy-host.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common # ServerAdmin semenov@itep.ru DirectoryIndex index.html ServerName saturn.itep.ru DocumentRoot /home/httpd/htdocs/saturn Options ExecCGI AllowOverride All ServerAdmin semenov@itep.ru ServerName store.in.ru ServerAlias store DirectoryIndex index.html DocumentRoot /home/httpd/htdocs/store ServerAdmin semenov@itep.ru DocumentRoot /home/httpd/htdocs/elics/html ServerName elics.in.ru # CharsetSourceEnc koi8-r ServerAdmin netmaster@itep.ru ServerName book.itep.ru ServerAlias book DocumentRoot /home/httpd/htdocs/book/result ServerAdmin netmaster@itep.ru ServerName knowtest.itep.ru ServerAlias knowtest DocumentRoot /home/httpd/htdocs/book/tester DirectoryIndex tes.htm DocumentRoot "/home/httpd/htdocs/saturn" ServerName saturn.itep.ru DirectoryIndex index.html ServerAdmin semenov@itep.ru ErrorLog /var/log/httpd/error_log TransferLog /var/log/httpd/access_log # # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdirectories). # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # Options FollowSymLinks AllowOverride None Options Indexes FollowSymLinks MultiViews Options +Includes AllowOverride All Order allow,deny Allow from all deny from 5.188.10.180 deny from 5.188.10.176 deny from 119.28.143.198 deny from 91.243.55.195 deny from 154.8.237.78 deny from 217.77.77.18 deny from 185.153.180.63 deny from 121.201.101.246 deny from 5.180.96.98 deny from 153.0.3.164 deny from 188.18.244.226 deny from 109.252.55.180 deny from 109.252.55.180 deny from 120.29.123.152 deny from 113.59.13.111 deny from 66.249.69.214 deny from 39.66.68.8 deny from 139.196.105.39 deny from 113.58.45.148 deny from 79.207.36.45 deny from 122.247.179.136 deny from 125.64.94.213 deny from 116.255.165.22 deny from 145.255.2.28 deny from 46.191.232.251 deny from 136.169.232.197 deny from 116.255.152.137 deny from 115.231.8.220 deny from 103.30.43.109 deny from 140.143.0.54 deny from 182.110.165.55 deny from 104.192.84.71 deny from 122.247.21.255 deny from 114.99.19.107 deny from 113.58.161.103 deny from 223.242.242.34 deny from 211.159.180.74 deny from 118.25.71.229 deny from 66.249.64.54 deny from 223.198.83.136 deny from 125.113.125.83 deny from 125.118.213.6 deny from 125.121.135.133 deny from 116.255.154.84 deny from 183.166.10.38 deny from 113.58.35.22 deny from 103.123.161.21 deny from 188.234.148.51 deny from 115.217.238.102 deny from 103.9.195.156 deny from 119.3.216.136 deny from 121.233.172.63 deny from 42.243.232.245 deny from 1.194.145.19 deny from 85.140.5.244 deny from 116.255.153.147 deny from 112.114.106.95 deny from 118.120.234.202 deny from 210.203.21.107 deny from 216.194.173.75 deny from 66.249.79.188 deny from 66.249.79.190 deny from 115.204.122.191 deny from 222.186.129.42 deny from 132.232.67.171 deny from 121.127.226.197 deny from 116.255.163.158 deny from 40.77.167.189 deny from 118.25.75.27 deny from 176.77.7.37 deny from 124.47.22.86 deny from 115.197.163.78 deny from 103.100.158.53 deny from 118.24.24.40 deny from 125.119.66.100 deny from 180.125.63.19 deny from 27.110.218.196 deny from 58.82.224.162 deny from 23.102.153.154 deny from 85.106.106.18 deny from 222.186.138.65 deny from 116.255.164.149 deny from 103.207.37.189 deny from 112.245.241.53 deny from 103.85.85.98 deny from 60.215.46.188 deny from 60.169.77.107 deny from 91.246.163.240 deny from 45.127.97.48 deny from 171.211.182.138 deny from 123.206.67.103 deny from 118.24.111.132 deny from 132.232.181.184 deny from 202.120.51.237 deny from 183.131.85.53 deny from 23.252.165.109 deny from 125.35.24.86 deny from 125.119.55.27 deny from 125.121.134.131 deny from 103.55.25.121 deny from 115.199.239.196 deny from 172.81.225.95 deny from 118.24.221.245 deny from 122.114.146.180 deny from 122.247.179.178 deny from 111.230.235.56 deny from 117.87.152.69 deny from 222.186.57.142 deny from 122.247.184.187 deny from 123.133.161.68 deny from 123.163.150.12 deny from 183.156.244.193 deny from 211.22.220.25 deny from 222.186.20.85 deny from 171.80.157.191 deny from 112.90.184.68 deny from 222.186.10.54 deny from 222.186.46.52 deny from 115.204.161.43 deny from 148.217.200.15 deny from 115.217.36.107 deny from 125.121.138.248 deny from 119.42.112.211 deny from 123.207.74.161 deny from 125.119.66.192 deny from 106.111.130.240 deny from 59.188.231.5 deny from 116.255.187.24 deny from 118.89.248.54 deny from 94.191.27.19 deny from 103.243.26.74 deny from 104.40.242.46 deny from 112.245.184.41 deny from 103.114.133.65 deny from 103.207.166.61 deny from 66.249.64.27 deny from 162.247.99.14 deny from 111.230.157.95 deny from 103.213.248.97 deny from 222.186.59.195 deny from 66.249.79.86 deny from 66.249.79.88 deny from 61.174.156.135 deny from 182.254.171.146 deny from 49.82.147.58 deny from 115.199.239.179 deny from 121.201.127.120 deny from 203.171.232.156 deny from 222.186.134.108 deny from 103.246.247.42 deny from 81.108.158.210 deny from 14.192.212.131 deny from 119.123.130.215 deny from 23.225.204.183 deny from 116.255.150.21 deny from 174.139.190.138 deny from 70.50.174.227 deny from 103.24.93.31 deny from 108.36.229.128 deny from 182.34.27.201 deny from 116.255.155.50 deny from 112.252.16.28 deny from 119.7.72.11 deny from 112.252.16.7 deny from 183.156.241.147 deny from 60.215.29.218 deny from 175.154.50.179 deny from 66.249.66.159 deny from 112.252.28.251 deny from 60.215.46.37 deny from 45.64.113.211 deny from 119.5.78.37 deny from 112.245.155.137 deny from 222.186.30.232 deny from 103.243.26.236 deny from 67.198.244.138 deny from 27.209.91.17 deny from 111.230.141.97 deny from 58.218.213.188 deny from 60.251.152.85 deny from 112.67.221.249 deny from 132.232.66.231 deny from 211.149.142.222 deny from 106.12.124.99 ### 2019-3-25 15:40:1 3 deny from 119.185.24.255 ### 2019-3-25 6:0:1 3 deny from 39.66.7.107 ### 2019-3-24 17:40:1 3 deny from 182.45.203.178 ### 2019-3-24 12:40:1 3 deny from 42.51.196.31 ### 2019-3-24 7:40:1 3 deny from 222.186.10.142 ### 2019-3-23 16:40:1 4 deny from 180.76.182.93 ### 2019-3-23 12:40:1 3 deny from 222.186.150.234 ### 2019-3-22 18:40:1 3 deny from 119.123.131.110 ### 2019-3-22 18:0:2 3 deny from 123.133.163.233 ### 2019-3-22 15:0:1 4 deny from 118.25.2.209 ### 2019-3-22 13:40:1 3 deny from 123.129.224.43 ### 2019-3-22 11:40:1 2 deny from 66.249.66.77 ### 2019-3-22 6:40:1 3 deny from 103.56.53.78 ### 2019-3-21 11:40:1 4 deny from 123.206.44.225 ### 2019-3-21 0:40:1 3 deny from 61.160.207.166 ### 2019-3-20 6:40:1 3 deny from 222.186.57.149 ### 2019-3-19 16:40:1 3 deny from 123.129.224.78 ### 2019-3-19 14:40:1 3 deny from 222.186.150.193 ### 2019-3-19 12:0:1 3 deny from 222.186.59.44 ### 2019-3-17 11:0:1 3 deny from 188.131.144.100 ### 2019-3-17 0:40:1 3 deny from 181.49.106.234 ### 2019-3-16 4:40:1 3 deny from 122.114.76.52 ### 2019-3-15 21:40:1 4 deny from 122.114.28.27 ### 2019-3-15 3:40:1 3 deny from 119.3.225.98 ### 2019-3-14 11:0:1 2 deny from 66.249.66.78 ### 2019-3-13 18:40:1 3 deny from 222.186.59.29 ### 2019-3-13 16:40:2 3 deny from 46.173.55.27 ### 2019-3-12 17:40:1 4 deny from 114.116.74.220 ### 2019-3-12 15:40:1 4 deny from 34.73.179.24 ### 2019-3-11 23:40:1 3 deny from 132.232.106.86 ### 2019-3-11 23:0:1 4 deny from 220.132.207.222 ### 2019-3-11 22:40:2 4 deny from 87.205.121.255 ### 2019-3-11 21:0:1 4 deny from 193.112.81.162 ### 2019-3-7 4:40:1 3 deny from 119.185.41.161 ### 2019-3-6 17:40:1 3 deny from 159.192.222.153 ### 2019-3-6 9:0:1 3 deny from 222.130.219.196 ### 2019-3-5 12:40:1 4 deny from 103.90.224.142 ### 2019-3-5 9:40:1 2 deny from 209.163.119.82 ### 2019-3-4 17:0:1 4 deny from 88.225.254.156 ### 2019-3-4 1:0:1 3 deny from 210.61.130.61 ### 2019-3-4 1:0:1 4 deny from 210.61.130.61 ### 2019-3-3 23:40:1 3 deny from 45.76.101.225 ### 2019-3-3 16:40:1 3 deny from 91.224.99.241 ### 2019-3-3 14:40:1 2 deny from 66.249.66.76 ### 2019-3-3 13:0:1 3 deny from 112.252.18.171 ### 2019-3-3 12:0:1 3 deny from 60.215.28.49 ### 2019-3-2 15:40:2 4 deny from 61.253.14.191 ### 2019-3-2 2:40:1 3 deny from 112.245.241.212 ### 2019-2-28 9:0:1 3 deny from 222.186.160.61 ### 2019-2-28 8:0:1 3 deny from 112.252.16.41 ### 2019-2-27 23:0:1 4 deny from 3.121.146.242 ### 2019-2-27 17:40:1 3 deny from 182.45.203.66 ### 2019-2-27 5:40:1 3 deny from 222.186.57.109 ### 2019-2-26 19:0:1 4 deny from 90.171.21.197 ### 2019-2-25 8:40:1 3 deny from 119.186.36.62 ### 2019-2-25 5:40:1 3 deny from 94.232.54.130 ### 2019-2-24 8:40:1 4 deny from 195.101.247.218 ### 2019-2-24 3:40:1 3 deny from 83.52.22.54 ### 2019-2-23 17:40:1 3 deny from 59.36.169.180 ### 2019-2-23 5:0:1 3 deny from 123.133.162.240 ### 2019-2-22 22:40:2 3 deny from 193.112.40.242 ### 2019-2-22 19:0:1 4 deny from 78.110.249.46 ### 2019-2-22 8:40:1 4 deny from 217.82.31.163 ### 2019-2-21 11:40:1 3 deny from 47.95.232.10 ### 2019-2-20 15:40:1 4 deny from 220.191.252.252 ### 2019-2-19 21:40:1 4 deny from 114.41.36.152 ### 2019-2-19 20:40:1 3 deny from 39.66.79.50 ### 2019-2-19 8:40:1 4 deny from 78.194.206.26 ### 2019-2-19 5:40:1 2 deny from 207.46.13.33 ### 2019-2-16 5:40:1 3 deny from 139.199.155.25 ### 2019-2-16 2:0:1 3 deny from 60.215.28.132 ### 2019-2-13 10:0:1 4 deny from 213.125.142.194 ### 2019-2-10 4:40:1 3 deny from 89.132.90.197 ### 2019-2-10 1:40:1 2 deny from 207.46.13.40 ### 2019-2-10 0:0:1 2 deny from 207.46.13.83 ### 2019-2-9 22:0:1 3 deny from 148.70.29.88 ### 2019-2-9 21:40:1 2 deny from 157.55.39.133 ### 2019-2-8 22:0:1 4 deny from 182.237.2.51 ### 2019-2-7 12:40:1 4 deny from 91.64.85.229 ### 2019-2-6 3:40:2 4 deny from 45.40.245.25 ### 2019-2-5 4:0:1 3 deny from 119.188.248.36 ### 2019-2-4 13:0:1 3 deny from 39.66.70.75 ### 2019-2-2 18:0:1 2 deny from 103.131.27.3 ### 2019-2-2 2:40:1 3 deny from 202.119.65.29 ### 2019-2-1 19:40:1 3 deny from 187.162.25.188 ### 2019-1-27 8:40:1 3 deny from 129.204.66.169 ### 2019-1-27 5:40:2 3 deny from 222.189.204.83 ### 2019-1-26 12:40:1 3 deny from 188.131.138.195 ### 2019-1-25 17:40:1 3 deny from 112.245.242.134 ### 2019-1-25 16:40:1 3 deny from 119.186.36.45 ### 2019-1-25 9:40:1 3 deny from 178.238.20.218 ### 2019-1-25 9:0:1 3 deny from 81.27.221.125 ### 2019-1-24 13:40:1 3 deny from 94.191.94.95 ### 2019-1-24 1:0:1 4 deny from 110.50.85.173 ### 2019-1-23 21:40:1 3 deny from 192.186.9.150 ### 2019-1-23 17:40:1 3 deny from 118.25.51.81 ### 2019-1-23 16:0:1 3 deny from 83.58.42.27 ### 2019-1-22 14:40:1 3 deny from 109.252.139.244 ### 2019-1-21 22:40:1 2 deny from 189.51.98.182 ### 2019-1-21 20:0:1 4 deny from 123.207.3.73 ### 2019-1-21 11:40:1 3 deny from 185.232.20.198 ### 2019-1-21 1:40:1 4 deny from 157.230.128.187 ### 2019-1-20 19:0:1 3 deny from 91.79.200.126 ### 2019-1-20 17:40:1 2 deny from 183.4.65.33 ### 2019-1-18 23:0:1 2 deny from 40.77.167.139 ### 2019-1-18 16:40:1 3 deny from 79.104.6.235 ### 2019-1-18 11:40:1 3 deny from 129.204.20.210 ### 2019-1-18 3:0:1 3 deny from 61.132.226.51 ### 2019-1-17 16:40:1 4 deny from 202.96.155.48 ### 2019-1-17 7:0:1 2 deny from 207.46.13.4 ### 2019-1-16 10:40:1 3 deny from 110.42.1.19 ### 2019-1-16 10:40:1 4 deny from 110.42.1.19 ### 2019-1-15 17:40:1 4 deny from 106.12.8.151 ### 2019-1-15 14:40:1 3 deny from 119.27.175.168 ### 2019-1-14 18:0:1 3 deny from 119.185.5.163 ### 2019-1-14 8:40:1 4 deny from 149.172.48.183 ### 2019-1-13 19:0:1 3 deny from 123.207.240.40 ### 2019-1-12 16:40:1 2 deny from 138.229.110.171 ### 2019-1-12 12:40:1 3 deny from 103.23.47.99 ### 2019-1-12 5:0:1 4 deny from 103.50.253.8 ### 2019-1-12 3:0:1 4 deny from 40.125.200.20 ### 2019-1-11 6:40:1 2 deny from 207.46.13.173 ### 2019-1-10 17:40:1 3 deny from 222.179.152.117 ### 2019-1-10 12:40:1 2 deny from 207.46.13.94 ### 2019-1-10 12:40:1 2 deny from 157.55.39.145 ### 2019-1-10 0:40:1 2 deny from 207.46.13.41 ### 2019-1-9 23:0:1 3 deny from 123.133.163.109 ### 2019-1-9 18:40:1 3 deny from 119.185.7.41 ### 2019-1-7 18:40:1 3 deny from 39.66.76.199 ### 2019-1-6 15:40:1 2 deny from 207.46.13.101 ### 2019-1-6 8:40:1 3 deny from 212.64.89.137 ### 2019-1-6 8:0:1 4 deny from 132.232.69.172 ### 2019-1-5 8:40:1 3 deny from 144.48.242.113 ### 2019-1-5 7:40:1 3 deny from 122.114.171.128 ### 2019-1-4 20:40:1 2 deny from 207.46.13.204 ### 2019-1-4 16:40:1 3 deny from 139.199.100.101 ### 2019-1-4 16:0:1 4 deny from 132.232.224.155 ### 2019-1-4 10:40:1 3 deny from 222.76.212.56 ### 2019-1-4 4:40:1 3 deny from 39.66.70.112 ### 2019-1-3 20:40:1 3 deny from 119.7.79.50 ### 2019-1-3 17:40:1 4 deny from 181.143.183.45 ### 2019-1-3 9:0:1 4 deny from 222.192.60.40 ### 2019-1-3 0:40:1 3 deny from 139.199.23.198 ### 2019-1-2 12:0:1 3 deny from 120.79.77.82 ### 2019-1-1 20:0:1 3 deny from 134.175.87.117 ### 2019-1-1 18:40:1 4 deny from 203.159.249.181 ### 2019-1-1 11:0:1 3 deny from 60.215.30.25 ### 2019-1-1 0:40:1 3 deny from 43.229.207.200 ### 2018-12-31 14:40:1 3 deny from 203.114.124.181 ### 2018-12-31 9:40:1 4 deny from 129.28.103.29 ### 2018-12-30 9:0:1 3 deny from 103.110.81.2 ### 2018-12-30 2:40:1 4 deny from 139.199.59.75 ### 2018-12-30 2:0:1 3 deny from 27.209.177.36 ### 2018-12-29 20:0:1 3 deny from 123.249.7.34 ### 2018-12-29 15:0:1 3 deny from 112.114.105.42 ### 2018-12-29 13:40:1 3 deny from 39.66.78.201 ### 2018-12-29 10:40:1 4 deny from 47.244.118.112 ### 2018-12-28 17:40:1 4 deny from 222.186.139.133 ### 2018-12-28 13:40:1 4 deny from 132.232.37.105 ### 2018-12-28 8:0:2 3 deny from 119.186.38.199 ### 2018-12-27 11:0:1 3 deny from 60.215.31.11 ### 2018-12-27 11:0:1 3 deny from 118.123.19.99 ### 2018-12-27 6:0:1 3 deny from 43.252.229.160 ### 2018-12-27 6:0:1 3 deny from 112.245.154.166 ### 2018-12-27 5:40:1 3 deny from 60.215.46.75 ### 2018-12-27 4:40:1 3 deny from 116.196.81.21 ### 2018-12-27 4:40:1 3 deny from 112.252.30.218 ### 2018-12-27 2:40:1 4 deny from 125.70.9.249 ### 2018-12-26 2:40:1 4 deny from 92.87.91.22 ### 2018-12-25 12:40:1 3 deny from 112.245.157.183 ### 2018-12-25 11:40:1 3 deny from 45.40.241.250 ### 2018-12-25 7:40:1 2 deny from 157.55.39.68 ### 2018-12-24 17:40:1 3 deny from 114.115.247.159 ### 2018-12-24 15:40:1 3 deny from 117.41.183.82 ### 2018-12-23 18:40:1 3 deny from 132.232.43.136 ### 2018-12-23 14:40:1 3 deny from 120.78.0.241 ### 2018-12-23 14:0:1 3 deny from 139.199.18.17 ### 2018-12-23 14:0:1 4 deny from 139.199.18.17 ### 2018-12-22 8:0:1 3 deny from 45.116.77.139 ### 2018-12-22 5:40:1 3 deny from 134.175.144.186 ### 2018-12-21 3:40:1 2 deny from 66.249.79.160 ### 2018-12-20 17:0:1 2 deny from 158.69.124.228 ### 2018-12-20 17:0:1 3 deny from 222.186.23.24 ### 2018-12-20 13:0:1 4 deny from 212.237.49.211 ### 2018-12-20 5:40:1 4 deny from 51.75.27.78 ### 2018-12-16 14:40:1 4 deny from 134.175.39.175 ### 2018-12-15 22:40:1 4 deny from 122.114.70.110 ### 2018-12-15 2:0:1 2 deny from 40.77.167.127 ### 2018-12-14 18:0:1 3 deny from 139.199.65.226 ### 2018-12-14 17:40:1 4 deny from 46.24.63.27 ### 2018-12-13 9:40:1 3 deny from 112.252.28.84 ### 2018-12-13 2:40:1 3 deny from 144.48.241.70 ### 2018-12-12 18:40:1 3 deny from 118.24.68.129 ### 2018-12-12 16:40:1 2 deny from 40.77.167.177 ### 2018-12-12 7:0:1 4 deny from 61.219.85.137 ### 2018-12-12 4:40:1 3 deny from 94.191.99.179 ### 2018-12-11 20:40:1 3 deny from 45.61.252.194 ### 2018-12-11 11:40:1 3 deny from 39.66.77.181 ### 2018-12-10 20:40:1 3 deny from 112.245.156.61 ### 2018-12-10 16:0:1 3 deny from 91.121.72.71 ### 2018-12-10 0:40:1 3 deny from 222.186.57.163 ### 2018-12-7 18:0:1 3 deny from 83.149.204.128 ### 2018-12-7 9:40:1 3 deny from 27.209.176.245 ### 2018-12-7 2:40:1 3 deny from 221.2.44.75 ### 2018-12-6 1:0:1 3 deny from 123.133.161.14 ### 2018-12-5 19:40:1 3 deny from 31.145.27.182 ### 2018-12-5 19:40:1 4 deny from 31.145.27.182 ### 2018-12-5 13:40:1 3 deny from 204.13.67.243 ### 2018-12-4 11:40:1 4 deny from 31.208.4.138 ### 2018-12-4 6:40:1 2 deny from 140.224.61.168 ### 2018-12-3 20:40:1 3 deny from 95.24.234.203 ### 2018-12-3 20:40:1 3 deny from 189.111.177.113 ### 2018-12-3 1:0:1 2 deny from 5.188.211.13 ### 2018-12-2 15:40:1 3 deny from 203.171.226.142 ### 2018-12-2 12:40:1 4 deny from 212.19.96.163 ### 2018-11-30 22:40:2 4 deny from 54.36.115.76 ### 2018-11-30 11:40:1 4 deny from 145.239.95.143 ### 2018-11-27 12:40:1 4 deny from 125.26.165.189 ### 2018-11-26 21:40:1 4 deny from 125.64.94.208 ### 2018-11-25 20:0:1 4 deny from 119.29.54.156 ### 2018-11-25 4:40:1 2 deny from 46.149.58.10 ### 2018-11-23 22:40:1 4 deny from 116.89.248.213 ### 2018-11-22 17:40:1 2 deny from 207.46.13.93 ### 2018-11-22 6:40:1 2 deny from 178.248.3.136 ### 2018-11-21 17:40:1 3 deny from 140.143.119.39 ### 2018-11-21 12:0:1 4 deny from 204.12.242.250 ### 2018-11-21 11:40:1 2 deny from 207.46.13.215 ### 2018-11-21 2:40:1 2 deny from 40.77.167.178 ### 2018-11-20 13:40:1 3 deny from 186.10.66.139 ### 2018-11-20 3:40:1 3 deny from 118.89.21.195 ### 2018-11-19 7:40:1 4 deny from 212.64.43.37 ### 2018-11-18 15:40:1 4 deny from 140.143.153.197 ### 2018-11-18 3:40:1 2 deny from 207.46.13.159 ### 2018-11-17 17:40:1 2 deny from 178.216.138.115 ### 2018-11-17 6:40:1 3 deny from 202.91.10.52 ### 2018-11-16 22:40:1 3 deny from 210.89.52.233 ### 2018-11-16 22:0:1 2 deny from 66.249.79.166 ### 2018-11-16 22:0:1 2 deny from 66.249.79.168 ### 2018-11-16 20:0:1 3 deny from 198.44.228.85 ### 2018-11-16 19:40:1 3 deny from 139.219.234.67 ### 2018-11-16 5:40:1 4 deny from 144.48.242.213 ### 2018-11-15 13:0:2 2 deny from 66.249.66.94 ### 2018-11-15 9:40:1 2 deny from 207.46.13.197 ### 2018-11-15 1:40:1 4 deny from 103.71.238.152 ### 2018-11-12 20:40:2 3 deny from 202.91.10.53 ### 2018-11-12 20:40:2 4 deny from 52.36.210.148 ### 2018-11-12 17:40:1 2 deny from 200.55.189.173 ### 2018-11-12 8:0:1 3 deny from 122.248.32.10 ### 2018-11-12 0:0:1 4 deny from 103.214.168.86 ### 2018-11-11 15:40:1 2 deny from 207.46.13.142 ### 2018-11-11 14:0:1 4 deny from 212.35.170.125 ### 2018-11-11 10:0:1 2 deny from 116.15.43.86 ### 2018-11-11 2:40:1 4 deny from 178.162.204.238 ### 2018-11-9 23:0:1 3 deny from 112.114.102.93 ### 2018-11-9 22:40:1 4 deny from 134.175.186.164 ### 2018-11-9 17:0:1 3 deny from 45.120.51.36 ### 2018-11-9 10:40:1 3 deny from 116.255.251.204 ### 2018-11-9 9:40:1 4 deny from 134.175.228.226 ### 2018-11-9 7:40:1 4 deny from 140.143.19.50 ### 2018-11-9 6:40:1 2 deny from 66.249.69.156 ### 2018-11-9 6:40:1 2 deny from 66.249.69.157 ### 2018-11-9 2:40:2 3 deny from 116.255.196.32 ### 2018-11-8 15:40:1 3 deny from 122.114.98.67 ### 2018-11-7 18:0:1 3 deny from 218.28.136.213 ### 2018-11-7 12:40:1 3 deny from 116.255.174.172 ### 2018-11-7 2:0:1 3 deny from 124.106.83.63 ### 2018-11-6 11:0:1 4 deny from 102.165.51.161 ### 2018-11-5 7:40:1 3 deny from 144.255.152.40 ### 2018-11-5 2:40:1 3 deny from 132.232.81.88 ### 2018-11-4 20:40:1 3 deny from 1.220.217.37 ### 2018-11-2 0:40:1 2 deny from 66.249.69.17 ### 2018-10-31 12:40:1 2 deny from 40.77.167.118 ### 2018-10-31 4:40:1 2 deny from 207.46.13.133 ### 2018-10-31 1:40:1 3 deny from 27.22.195.145 ### 2018-10-30 18:0:1 3 deny from 115.205.228.204 ### 2018-10-30 11:0:1 3 deny from 221.233.65.196 ### 2018-10-29 15:40:1 3 deny from 221.229.204.71 ### 2018-10-28 20:0:1 3 deny from 160.124.140.180 ### 2018-10-28 12:40:1 3 deny from 167.114.208.180 ### 2018-10-28 8:40:1 3 deny from 221.233.64.90 ### 2018-10-28 3:0:1 3 deny from 175.155.239.1 ### 2018-10-27 23:40:1 2 deny from 66.249.79.40 ### 2018-10-27 18:0:1 3 deny from 58.87.98.110 ### 2018-10-27 18:0:1 3 deny from 132.232.98.175 ### 2018-10-27 12:40:1 4 deny from 42.116.70.120 ### 2018-10-27 8:0:1 3 deny from 114.116.25.11 ### 2018-10-27 3:0:1 3 deny from 220.191.28.25 ### 2018-10-27 0:40:1 3 deny from 193.112.86.81 ### 2018-10-26 16:40:1 3 deny from 58.51.18.251 ### 2018-10-25 23:40:1 3 deny from 122.241.24.16 ### 2018-10-24 15:0:2 3 deny from 183.154.20.250 ### 2018-10-24 10:0:1 3 deny from 95.153.94.211 ### 2018-10-24 1:40:1 3 deny from 111.177.126.160 ### 2018-10-23 22:40:1 2 deny from 207.46.13.25 ### 2018-10-23 0:40:1 4 deny from 167.99.12.115 ### 2018-10-22 10:40:1 3 deny from 115.192.66.71 ### 2018-10-22 5:40:1 3 deny from 115.230.124.26 ### 2018-10-21 8:0:1 3 deny from 122.226.92.114 ### 2018-10-20 1:40:1 2 deny from 201.230.155.6 ### 2018-10-19 4:0:1 3 deny from 114.115.145.58 ### 2018-10-18 23:40:1 2 deny from 40.77.167.123 ### 2018-10-18 10:40:1 2 deny from 40.77.167.169 ### 2018-10-18 8:0:1 2 deny from 140.250.95.17 ### 2018-10-17 19:0:1 3 deny from 118.120.231.129 ### 2018-10-15 15:0:1 2 deny from 122.7.211.93 ### 2018-10-15 13:40:1 2 deny from 207.46.13.95 ### 2018-10-14 23:0:1 2 deny from 40.77.167.26 ### 2018-10-14 19:40:1 2 deny from 40.77.167.180 ### 2018-10-14 13:40:1 2 deny from 40.77.167.147 ### 2018-10-14 8:40:1 2 deny from 180.121.134.5 ### 2018-10-13 12:40:1 2 deny from 59.61.220.219 ### 2018-10-13 12:0:1 2 deny from 140.224.61.249 ### 2018-10-12 3:0:1 3 deny from 36.22.109.158 ### 2018-10-11 21:40:1 3 deny from 115.221.125.66 ### 2018-10-11 11:0:1 2 deny from 207.46.13.160 ### 2018-10-11 10:0:1 3 deny from 115.192.238.243 ### 2018-10-10 23:40:1 3 deny from 122.114.14.222 ### 2018-10-10 18:0:1 3 deny from 113.96.44.209 ### 2018-10-10 9:40:1 4 deny from 123.206.181.192 ### 2018-10-10 0:40:1 3 deny from 134.175.192.235 ### 2018-10-9 22:0:1 2 deny from 207.46.13.163 ### 2018-10-9 22:0:1 2 deny from 207.46.13.202 ### 2018-10-9 0:0:1 3 deny from 115.192.248.20 ### 2018-10-7 20:40:1 2 deny from 40.77.167.173 ### 2018-10-7 16:0:1 4 deny from 203.153.214.171 ### 2018-10-7 10:40:1 3 deny from 94.142.12.120 Options Indexes MultiViews AllowOverride None Allow from all Order allow,deny