## httpd.conf - configuration for the Apache web server # # Generated automatically... if you edit manually, the changes will be lost # the next time you run "apacheconfig". # ### 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" # # ScoreBoardFile: File used to store internal server process information. # If unspecified (the default), the scoreboard will be stored in an # anonymous shared memory segment, and will be unavailable to third-party # applications. # If specified, ensure that no two invocations of Apache share the same # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK. # #ScoreBoardFile run/httpd.scoreboard # # PidFile: The file in which the server should record its process # identification number when it starts. # PidFile "/var/run/httpd.pid" # # Timeout: The number of seconds before receives and sends time out. # TimeOut 300 # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate. # KeepAlive false # # 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 # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves StartServers 8 MinSpareServers 5 MaxSpareServers 20 MaxClients 150 MaxRequestsPerChild 100 # 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 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 # perchild MPM # NumServers: constant number of server processes # StartThreads: initial number of worker threads in each server process # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # MaxThreadsPerChild: maximum number of worker threads in each server process # MaxRequestsPerChild: maximum number of connections per server process NumServers 5 StartThreads 5 MinSpareThreads 5 MaxSpareThreads 10 MaxThreadsPerChild 20 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 12.34.56.78:80 Listen 194.85.70.32:80 # # Load config files from the config directory "/etc/httpd/conf.d". # Include conf.d/*.conf # # 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 access_module modules/mod_access.so LoadModule auth_module modules/mod_auth.so #LoadModule auth_anon_module modules/mod_auth_anon.so ##LoadModule auth_dbm_module modules/mod_auth_dbm.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule env_module modules/mod_env.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule cern_meta_module modules/mod_cern_meta.so LoadModule expires_module modules/mod_expires.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule unique_id_module modules/mod_unique_id.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 asis_module modules/mod_asis.so LoadModule info_module modules/mod_info.so LoadModule cgi_module modules/mod_cgi.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 imap_module modules/mod_imap.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 rewrite_module modules/mod_rewrite.so LoadModule php4_module modules/libphp4.so # # 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 ### 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. # # # 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 nobody Group nobody # # 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 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 "/home/httpd/htdocs" # # Disable autoindex for the root directory, and present a # default Welcome page if no other index page is present. # Options -Indexes ErrorDocument 403 /error/noindex.html # # 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 "disable" # # To enable requests to /~user/ to serve the user's public_html # directory, use this directive instead of "UserDir disable": # #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 # # AccessFileName: The name of the file to look for in each directory # for access control information. 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 # # 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 # # 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 # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # container, they will be logged here. Contrariwise, if you *do* # define per- access logfiles, transactions will be # logged therein and *not* in this file. # # CustomLog logs/access_log common CustomLog logs/access_log combined # # If you would like to have agent and referer logfiles, uncomment the # following directives. # #CustomLog logs/referer_log referer #CustomLog logs/agent_log agent # # If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # #CustomLog logs/access_log combined # # Optionally add a line containing the server version and virtual host # name to server-generated pages (error documents, FTP directory listings, # mod_status and mod_info output etc., but not CGI generated documents). # Set to "EMail" to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature on # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So "/icons" isn't aliased in this # example, only "/icons/". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. # # We include the /icons/ alias for FancyIndexed directory listings. If you # do not use FancyIndexing, you may comment this out. # Alias /icons/ "/home/httpd/icons/" # # This should be changed to the ServerRoot/manual/. The alias provides # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation. # Alias /manual "/home/httpd/htdocs/manual" # Location of the WebDAV lock database. DAVLockDB /var/lib/dav/lockdb # # 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. # AllowOverride None Options ExecCGI Order allow,deny Allow from all ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/" # # Additional to mod_cgid.c settings, mod_cgid has Scriptsock # for setting UNIX socket for communicating with cgid. # #Scriptsock logs/cgisock AddHandler strip-meta-http .htm .html # # Redirect allows you to tell clients about documents which used to exist in # your server's namespace, but do not anymore. This allows you to tell the # clients where to look for the relocated document. # Example: # Redirect permanent /foo http://www.example.com/bar # # Directives controlling the display of server-generated directory listings. # # # FancyIndexing is whether you want fancy directory indexing or standard. # VersionSort is whether files containing version numbers should be # compared in the natural way, so that `apache-1.3.9.tar' is placed before # `apache-1.3.12.tar'. # IndexOptions FancyIndexing VersionSort NameWidth=* # # AddIcon* directives tell the server which icon to show for different # files or filename extensions. These are only displayed for # FancyIndexed directories. # AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ # # DefaultIcon is which icon to show for files which do not have an icon # explicitly set. # DefaultIcon /icons/unknown.gif # # AddDescription allows you to place a short description after a file in # server-generated indexes. These are only displayed for FancyIndexed # directories. # Format: AddDescription "description" filename # #AddDescription "GZIP compressed document" .gz #AddDescription "tar archive" .tar #AddDescription "GZIP compressed tar archive" .tgz # # 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 # # IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted. # IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t # # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) 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 # # DefaultLanguage and AddLanguage allows you to specify the language of # a document. You can then use content negotiation to give a browser a # file in a language the user can understand. # # Specify a default language. This means that all data # going out without a specific language tag (see below) will # be marked with this one. You probably do NOT want to set # this unless you are sure it is correct for all cases. # # * It is generally better to not mark a page as # * being a certain language than marking it with the wrong # * language! # # DefaultLanguage nl # # Note 1: The suffix does not have to be the same as the language # keyword --- those with documents in Polish (whose net-standard # language code is pl) may wish to use "AddLanguage pl .po" to # avoid the ambiguity with the common suffix for perl scripts. # # Note 2: The example entries below illustrate that in some cases # the two character 'Language' abbreviation is not identical to # the two character 'Country' code for its country, # E.g. 'Danmark/dk' versus 'Danish/da'. # # Note 3: In the case of 'ltz' we violate the RFC by using a three char # specifier. There is 'work in progress' to fix this and get # the reference data for rfc1766 cleaned up. # # Danish (da) - Dutch (nl) - English (en) - Estonian (et) # French (fr) - German (de) - Greek-Modern (el) # Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (kr) # Portugese (pt) - Luxembourgeois* (ltz) # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz) # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja) # Russian (ru) - Croatian (hr) # AddLanguage da .dk AddLanguage nl .nl AddLanguage en .en AddLanguage et .et AddLanguage fr .fr AddLanguage de .de AddLanguage he .he AddLanguage el .el AddLanguage it .it AddLanguage ja .ja AddLanguage pl .po AddLanguage kr .kr AddLanguage pt .pt AddLanguage nn .nn AddLanguage no .no AddLanguage pt-br .pt-br AddLanguage ltz .ltz AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage tw .tw AddLanguage zh-tw .tw AddLanguage hr .hr # # 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 ru en da nl et fr de el it ja kr no pl pt pt-br ltz ca es sv 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 pages sent out. This is # always a good idea and opens the door for future internationalisation # of your web site, should you ever want it. Specifying it as # a default does little harm; as the standard dictates that a page # is in iso-8859-1 (latin1) unless specified otherwise i.e. you # are merely stating the obvious. There are also some security # reasons in browsers, related to javascript and URL parsing # which encourage you to always set a default char set. # AddDefaultCharset WINDOWS-1251 #CharsetSourceEnc windows-1251 # # Commonly used filename extensions to character sets. You probably # want to avoid clashes with the language extensions, unless you # are good at carefully testing your setup after each change. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for # the official list of charset names and their respective RFCs # 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 # The set below does not map to a specific (iso) standard # but works on a fairly wide range of browsers. Note that # capitalization actually matters (it should not, but it # does for some browsers). # # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets # for a list of sorts. But browsers support few. # AddCharset GB2312 .gb2312 .gb AddCharset utf-7 .utf7 AddCharset utf-8 .utf8 AddCharset big5 .big5 .b5 AddCharset EUC-TW .euc-tw AddCharset EUC-JP .euc-jp AddCharset EUC-KR .euc-kr AddCharset shift_jis .sjis # # AddType allows you to add to or override the MIME configuration # file mime.types for specific file types. # AddType application/x-tar .tgz AddType application/x-httpd-php .php .php3 # # 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 # # For files that include their own HTTP headers: # #AddHandler send-as-is asis # # For server-parsed imagemap files: # AddHandler imap-file map # # 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.) # #AddOutputFilter INCLUDES .shtml AddHandler server-parsed .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 # Alias /error/ "/home/httpd/htdocs/error/" # # 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. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully BrowserMatch "^WebDrive" redirect-carefully # # Allow server status reports, with the URL of http://servername/server-status # Change the ".your-domain.com" to match your domain to enable. # # # SetHandler server-status # Order deny,allow # Deny from all # Allow from .your-domain.com # # # Allow remote server configuration reports, with the URL of # http://servername/server-info (requires that mod_info.c be loaded). # Change the ".your-domain.com" to match your domain to enable. # # # SetHandler server-info # Order deny,allow # Deny from all # Allow from .your-domain.com # # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # # #ProxyRequests On # # # Order deny,allow # Deny from all # Allow from .your-domain.com # # # 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 the cache as well, edit and uncomment the following lines: # (no cacheing without CacheRoot) # #CacheRoot "/etc/httpd/proxy" #CacheSize 5 #CacheGcInterval 4 #CacheMaxExpire 24 #CacheLastModifiedFactor 0.1 #CacheDefaultExpire 1 #NoCache a-domain.com another-domain.edu joes.garage-sale.com # # 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? LockFile "/var/lock/httpd.lock" #CoreDumpDirectory "/etc/httpd" # Defaults for virtual hosts # # Virtual hosts # # Virtual host saturn.itep.ru ServerAdmin semenov@itep.ru DirectoryIndex index.shtml ServerName saturn.itep.ru DocumentRoot /home/httpd/htdocs/saturn Options ExecCGI AllowOverride none ServerAdmin netmaster@itep.ru ServerName store.in.ru ServerAlias store DirectoryIndex index.shtml DocumentRoot /home/httpd/htdocs/store ServerAdmin netmaster@itep.ru DocumentRoot /home/httpd/htdocs/elics/html ServerName elics.in.ru # CharsetSourceEnc koi8-r # # ServerAdmin netmaster@itep.ru # DocumentRoot /home/httpd/htdocs/saturn/db # ServerName wwwtest.itep.ru # ServerAlias wwwtest # CharsetSourceEnc koi8-r # DirectoryIndex index.php # # # ServerAdmin netmaster@itep.ru # ServerName book2.itep.ru # ServerAlias book2 ## DirectoryIndex intro1.htm # DocumentRoot /home/httpd/htdocs/book/ # 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.shtml ServerAdmin goncharov@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 None Order allow,deny Allow from all ### 2013-5-4 12:20:0 4 deny from 212.154.154.212 ### 2013-5-4 7:20:1 1 deny from 154.35.32.10 ### 2013-5-4 7:20:1 1 deny from 154.35.32.13 ### 2013-5-3 18:20:1 4 deny from 85.26.184.146 ### 2013-5-3 7:20:1 1 deny from 14.63.224.220 ### 2013-5-2 8:40:2 1 deny from 193.231.236.98 ### 2013-5-1 0:0:1 4 deny from 88.171.87.175 ### 2013-4-30 15:0:1 4 deny from 92.100.123.74 ### 2013-4-30 11:10:7 4 deny from 84.237.19.5 ### 2013-4-30 8:48:10 1 deny from 61.153.98.18 ### 2013-4-30 3:41:51 2 deny from 92.100.81.3 ### 2013-4-28 3:25:16 2 deny from 46.138.235.81 ### 2013-4-27 21:24:53 2 deny from 110.45.163.194 ### 2013-4-27 4:5:34 4 deny from 114.34.244.43 ### 2013-4-27 0:44:5 4 deny from 46.242.98.226 ### 2013-4-26 17:23:39 4 deny from 5.178.85.31 ### 2013-4-26 1:23:17 2 deny from 87.106.140.114 ### 2013-4-25 4:22:46 4 deny from 66.249.73.23 ### 2013-4-24 10:2:9 4 deny from 91.209.51.187 ### 2013-4-23 22:1:44 4 deny from 72.29.72.173 ### 2013-4-23 21:21:41 4 deny from 188.165.236.147 ### 2013-4-23 20:1:36 4 deny from 93.190.226.250 ### 2013-4-22 3:40:25 2 deny from 66.249.75.207 ### 2013-4-21 21:40:20 4 deny from 91.221.60.82 ### 2013-4-19 9:6:47 4 deny from 199.59.156.150 ### 2013-4-19 7:9:22 1 deny from 42.121.48.25 ### 2013-4-19 7:9:22 4 deny from 94.242.198.110 ### 2013-4-17 18:25:56 4 deny from 92.125.59.98 ### 2013-4-17 16:45:55 4 deny from 93.125.63.67 ### 2013-4-16 22:45:29 4 deny from 46.151.8.2 ### 2013-4-16 17:5:20 4 deny from 79.134.0.1 ### 2013-4-15 20:54:47 4 deny from 46.241.21.1 ### 2013-4-15 14:18:44 2 deny from 116.193.89.8 ### 2013-4-15 13:58:56 2 deny from 66.249.76.207 ### 2013-4-14 14:23:28 2 deny from 95.189.8.5 ### 2013-4-13 19:45:34 4 deny from 92.124.7.196 ### 2013-4-13 15:5:18 4 deny from 188.242.187.202 ### 2013-4-13 7:5:4 1 deny from 68.165.216.202 ### 2013-4-13 1:24:57 4 deny from 94.25.228.51 ### 2013-4-10 11:49:16 4 deny from 85.93.51.3 ### 2013-4-9 14:2:13 4 deny from 91.196.94.24 ### 2013-4-9 1:1:30 4 deny from 80.239.243.96 ### 2013-4-9 0:1:29 4 deny from 37.73.234.122 ### 2013-4-8 8:5:22 4 deny from 80.83.237.44 ### 2013-4-7 20:40:44 4 deny from 83.149.21.185 ### 2013-4-7 16:40:25 4 deny from 128.204.5.87 ### 2013-4-7 7:40:3 4 deny from 95.67.197.231 ### 2013-4-3 19:42:31 4 deny from 188.162.37.84 ### 2013-4-3 19:2:31 2 deny from 58.225.75.152 ### 2013-4-3 8:42:0 4 deny from 109.234.9.253 ### 2013-4-3 3:41:54 2 deny from 66.249.73.20 ### 2013-4-1 10:40:35 4 deny from 61.152.221.196 ### 2013-4-1 7:0:32 1 deny from 218.29.134.77 ### 2013-3-31 16:0:13 4 deny from 93.80.196.49 ### 2013-3-31 13:40:9 4 deny from 94.140.158.42 ### 2013-3-29 22:23:47 4 deny from 91.210.101.205 ### 2013-3-29 11:43:30 4 deny from 213.87.122.108 ### 2013-3-29 7:3:20 1 deny from 31.214.140.203 ### 2013-3-28 13:22:57 4 deny from 198.1.89.85 ### 2013-3-28 8:2:46 4 deny from 78.164.150.58 ### 2013-3-27 22:42:36 4 deny from 109.169.243.221 ### 2013-3-26 18:41:53 4 deny from 82.207.112.252 ### 2013-3-26 18:21:49 4 deny from 91.77.180.159 ### 2013-3-26 15:21:46 4 deny from 178.206.144.167 ### 2013-3-26 3:21:20 4 deny from 85.155.132.82 ### 2013-3-25 9:20:39 4 deny from 187.142.138.212 ### 2013-3-23 17:2:43 4 deny from 88.227.35.30 ### 2013-3-23 5:22:28 4 deny from 217.118.95.149 ### 2013-3-23 3:42:26 4 deny from 195.74.52.176 ### 2013-3-22 18:42:20 4 deny from 193.138.93.9 ### 2013-3-22 13:42:9 4 deny from 66.249.81.136 ### 2013-3-21 10:1:21 4 deny from 89.232.217.223 ### 2013-3-20 19:1:2 4 deny from 194.116.187.25 ### 2013-3-20 7:21:13 4 deny from 188.44.127.124 ### 2013-3-19 19:40:25 4 deny from 37.140.141.9 ### 2013-3-17 23:20:1 4 deny from 93.188.40.239 ### 2013-3-15 17:0:7 4 deny from 95.73.133.155 ### 2013-3-14 15:6:6 4 deny from 91.213.87.3 ### 2013-3-14 5:42:57 4 deny from 195.161.157.145 ### 2013-3-14 2:22:35 4 deny from 46.188.22.6 ### 2013-3-13 19:42:25 4 deny from 184.154.170.50 ### 2013-3-13 10:22:2 4 deny from 83.149.9.47 ### 2013-3-12 1:21:10 4 deny from 188.134.34.175 ### 2013-3-11 19:21:1 4 deny from 89.108.108.85 ### 2013-3-9 15:23:16 4 deny from 37.157.197.136 ### 2013-3-5 18:21:36 4 deny from 210.44.159.49 ### 2013-3-5 6:1:11 2 deny from 66.249.75.136 ### 2013-3-5 0:21:6 4 deny from 46.21.170.32 ### 2013-3-4 14:20:46 4 deny from 212.49.98.189 ### 2013-3-4 11:40:40 4 deny from 188.128.92.163 ### 2013-3-4 7:0:32 1 deny from 218.28.87.219 ### 2013-3-3 19:0:23 4 deny from 128.72.243.45 ### 2013-2-26 22:42:30 4 deny from 178.213.206.119 ### 2013-2-26 12:21:40 4 deny from 212.98.162.21 ### 2013-2-26 6:41:20 4 deny from 91.200.160.55 ### 2013-2-25 18:1:7 4 deny from 188.244.46.81 ### 2013-2-24 16:0:19 4 deny from 93.15.137.98 ### 2013-2-23 22:45:47 4 deny from 50.97.225.50 ### 2013-2-23 16:45:36 4 deny from 217.21.43.222 ### 2013-2-22 14:31:29 4 deny from 106.51.145.153 ### 2013-2-22 1:56:58 4 deny from 174.142.220.111 ### 2013-2-21 17:2:37 4 deny from 194.27.94.61 ### 2013-2-21 4:4:45 4 deny from 203.66.130.176 ### 2013-2-21 3:24:16 4 deny from 178.165.27.101 ### 2013-2-20 17:2:34 4 deny from 217.19.210.233 ### 2013-2-20 4:21:57 4 deny from 82.145.48.4 ### 2013-2-17 18:40:21 4 deny from 109.254.90.7 ### 2013-2-16 23:24:8 4 deny from 50.7.251.2 ### 2013-2-16 17:24:0 4 deny from 37.140.141.35 ### 2013-2-15 7:3:31 1 deny from 207.134.126.44 ### 2013-2-14 7:2:54 1 deny from 113.200.67.186 ### 2013-2-14 0:2:47 4 deny from 109.172.58.72 ### 2013-2-13 19:2:38 4 deny from 109.172.15.49 ### 2013-2-12 18:41:47 2 deny from 66.249.76.136 ### 2013-2-12 18:21:45 4 deny from 66.194.55.249 ### 2013-2-12 7:1:11 1 deny from 192.210.51.71 ### 2013-2-11 10:40:37 4 deny from 188.123.241.56 ### 2013-2-11 8:0:31 2 deny from 66.249.73.7 ### 2013-2-11 7:0:29 1 deny from 194.190.14.254 ### 2013-2-9 12:0:4 4 deny from 5 ### 2013-2-8 16:0:2 4 deny from 95.180.243.208 ### 2013-2-7 18:4:9 4 deny from 213.187.113.105 ### 2013-2-7 12:3:37 4 deny from 81.177.33.4 ### 2013-2-7 7:3:27 1 deny from 220.130.98.88 ### 2013-2-6 23:23:19 4 deny from 178.211.133.90 ### 2013-2-6 21:22:44 2 deny from 188.120.246.129 ### 2013-2-6 16:22:47 4 deny from 92.241.102.97 ### 2013-2-6 7:2:8 1 deny from 61.190.12.34 ### 2013-2-5 18:21:50 4 deny from 61.38.194.46 ### 2013-2-5 7:1:21 1 deny from 115.236.101.244 ### 2013-2-5 4:41:17 4 deny from 93.92.198.34 ### 2013-2-4 7:0:37 1 deny from 110.75.188.212 ### 2013-2-4 0:20:29 4 deny from 86.50.111.9 ### 2013-2-2 20:44:38 4 deny from 94.20.26.8 ### 2013-2-2 7:4:1 1 deny from 122.224.32.190 ### 2013-2-2 7:4:1 1 deny from 117.79.91.214 ### 2013-2-1 17:23:41 4 deny from 188.163.61.37 ### 2013-2-1 7:43:29 4 deny from 109.86.16.236 ### 2013-1-31 22:43:10 4 deny from 188.163.59.77 ### 2013-1-31 7:2:22 1 deny from 58.162.96.250 ### 2013-1-30 7:1:48 1 deny from 81.57.244.146 ### 2013-1-29 7:1:6 1 deny from 61.164.208.50 ### 2013-1-27 20:20:23 4 deny from 180.153.253.190 ### 2013-1-26 22:4:43 4 deny from 88.244.85.195 ### 2013-1-25 7:3:46 1 deny from 199.195.213.229 ### 2013-1-25 3:43:41 4 deny from 66.249.78.136 ### 2013-1-24 14:3:24 4 deny from 95.180.244.120 ### 2013-1-24 8:23:6 4 deny from 218.203.165.66 ### 2013-1-23 14:42:44 4 deny from 95.26.14.203 ### 2013-1-23 7:2:24 1 deny from 171.101.218.98 ### 2013-1-23 7:2:24 1 deny from 61.152.123.142 ### 2013-1-22 16:1:54 4 deny from 194.85.70.31 ### 2013-1-21 14:20:58 4 deny from 62.248.72.60 ### 2013-1-19 7:4:29 1 deny from 202.77.107.203 ### 2013-1-19 5:24:22 4 deny from 94.45.138.157 ### 2013-1-18 16:4:4 4 deny from 216.161.190.70 ### 2013-1-16 19:2:42 4 deny from 78.171.179.67 ### 2013-1-16 7:2:10 1 deny from 178.161.141.130 ### 2013-1-15 7:1:19 1 deny from 111.11.181.175 ### 2013-1-15 7:1:19 1 deny from 189.15.30.197 ### 2013-1-14 7:0:37 1 deny from 186.215.180.34 ### 2013-1-13 16:20:16 4 deny from 176.42.85.15 ### 2013-1-10 7:20:2 1 deny from 218.10.19.155 ### 2013-1-8 12:40:1 4 deny from 95.64.153.136 ### 2013-1-8 7:20:2 1 deny from 182.71.162.83 ### 2013-1-7 7:39:35 1 deny from 183.61.135.224 ### 2013-1-6 14:40:24 2 deny from 176.15.103.148 ### 2013-1-6 9:0:5 4 deny from 61.191.55.150 ### 2013-1-5 11:1:58 4 deny from 193.40.160.160 ### 2013-1-4 7:1:19 1 deny from 196.15.134.12 ### 2013-1-1 18:40:32 4 deny from 81.177.170.90 ### 2013-1-1 18:20:30 4 deny from 176.9.86.47 ### 2013-1-1 18:20:30 4 deny from 46.254.21.69 ### 2013-1-1 7:0:26 1 deny from 77.232.155.198 ### 2012-12-31 7:0:17 1 deny from 115.236.185.75 ### 2012-12-30 7:0:4 1 deny from 190.120.235.32 ### 2012-12-29 23:4:9 2 deny from 91.205.96.13 ### 2012-12-29 7:3:55 1 deny from 149.156.65.149 ### 2012-12-28 7:3:27 1 deny from 194.190.17.248 ### 2012-12-27 19:3:13 4 deny from 31.200.107.158 ### 2012-12-27 19:3:13 4 deny from 88.224.235.102 ### 2012-12-27 7:25:37 4 deny from 216.230.230.248 ### 2012-12-27 7:2:42 1 deny from 27.124.18.27 ### 2012-12-27 7:2:42 1 deny from 183.61.135.222 ### 2012-12-26 7:2:1 1 deny from 85.130.83.45 ### 2012-12-26 7:2:1 1 deny from 161.53.203.203 ### 2012-12-25 7:1:18 1 deny from 218.104.145.18 ### 2012-12-25 7:1:18 1 deny from 222.128.198.6 ### 2012-12-24 7:0:36 1 deny from 83.17.66.13 ### 2012-12-24 7:0:36 1 deny from 195.228.218.220 ### 2012-12-23 23:0:31 4 deny from 59.46.69.38 ### 2012-12-22 7:5:36 1 deny from 77.89.149.126 ### 2012-12-20 7:4:14 1 deny from 190.147.78.131 ### 2012-12-18 11:2:1 2 deny from 87.252.227.109 ### 2012-12-15 20:37:36 4 deny from 193.111.127.108 ### 2012-12-15 17:37:23 1 deny from 50.56.73.97 ### 2012-12-1 7:28:36 4 deny from 78.165.159.44 ### 2012-11-27 0:4:2 4 deny from 83.66.180.177 ### 2012-11-26 17:31:27 4 deny from 211.152.55.131 ### 2012-11-26 17:16:16 2 deny from 194.67.69.69 ### 2012-11-26 7:0:35 1 deny from 85.18.64.81 ### 2012-11-25 7:0:6 1 deny from 180.181.133.243 ### 2012-11-24 21:49:9 4 deny from 88.245.197.72 ### 2012-11-24 7:3:49 1 deny from 88.191.144.13 ### 2012-11-24 7:3:49 1 deny from 182.71.10.78 ### 2012-11-21 20:47:34 4 deny from 78.182.227.255 ### 2012-11-17 7:3:35 1 deny from 218.102.23.146 ### 2012-11-17 7:3:35 1 deny from 202.62.74.227 ### 2012-11-16 7:3:4 1 deny from 110.172.52.45 ### 2012-11-14 7:1:49 1 deny from 88.190.44.225 ### 2012-11-14 2:31:45 4 deny from 222.122.15.241 ### 2012-11-9 21:48:11 4 deny from 94.54.102.1 ### 2012-11-7 14:31:51 4 deny from 70.244.151.169 ### 2012-11-3 7:4:31 1 deny from 119.97.217.62 ### 2012-11-3 7:4:31 1 deny from 59.125.208.244 ### 2012-11-1 7:3:32 1 deny from 61.132.96.114 ### 2012-10-30 16:18:57 2 deny from 77.73.88.156 ### 2012-10-30 16:18:57 4 deny from 77.73.88.156 ### 2012-10-28 22:30:24 4 deny from 83.136.124.51 ### 2012-10-27 10:18:58 2 deny from 91.197.171.193 ### 2012-10-26 7:2:52 1 deny from 119.254.67.206 ### 2012-10-24 7:1:42 1 deny from 121.37.60.157 ### 2012-10-21 7:0:5 1 deny from 186.71.25.178 ### 2012-10-20 0:18:46 2 deny from 178.187.163.249 ### 2012-10-15 11:0:44 4 deny from 178.154.243.108 ### 2012-10-15 7:0:37 1 deny from 202.94.70.20 ### 2012-10-14 14:0:27 2 deny from 109.237.146.74 ### 2012-10-11 18:47:44 4 deny from 78.163.108.190 ### 2012-10-9 18:46:33 2 deny from 84.244.38.162 ### 2012-10-9 7:1:0 1 deny from 218.60.3.34 ### 2012-10-9 7:1:0 1 deny from 212.156.138.50 ### 2012-10-8 7:0:26 1 deny from 74.94.112.37 ### 2012-10-6 7:3:6 1 deny from 197.200.168.39 ### 2012-10-4 15:2:18 4 deny from 78.161.23.110 ### 2012-10-3 17:46:51 4 deny from 189.76.176.10 ### 2012-10-3 7:1:30 1 deny from 211.119.115.147 ### 2012-10-2 17:1:14 4 deny from 78.169.20.201 ### 2012-10-2 7:0:57 1 deny from 46.19.98.20 ### 2012-9-29 7:2:49 1 deny from 183.91.82.23 ### 2012-9-28 7:2:23 1 deny from 183.129.160.242 ### 2012-9-27 7:1:56 1 deny from 125.46.26.52 ### 2012-9-26 7:1:22 1 deny from 221.226.40.68 ### 2012-9-26 7:1:22 1 deny from 108.228.72.155 ### 2012-9-25 7:0:55 1 deny from 194.226.177.156 ### 2012-9-25 7:0:55 1 deny from 125.46.26.111 ### 2012-9-24 22:30:51 4 deny from 203.91.121.71 ### 2012-9-22 9:48:18 2 deny from 109.162.91.109 ### 2012-9-21 12:32:36 2 deny from 46.247.247.16 ### 2012-9-20 7:1:51 1 deny from 41.76.192.24 ### 2012-9-18 7:0:47 1 deny from 61.43.190.163 ### 2012-9-15 20:17:48 4 deny from 12.219.41.222 ### 2012-9-12 3:46:14 2 deny from 85.17.29.107 ### 2012-9-6 3:31:22 4 deny from 78.162.18.123 ### 2012-9-1 7:2:11 1 deny from 92.63.15.34 ### 2012-8-29 9:46:1 4 deny from 123.138.30.219 ### 2012-8-29 7:1:0 1 deny from 173.234.8.191 ### 2012-8-27 7:0:19 1 deny from 204.84.6.114 ### 2012-8-25 18:47:45 4 deny from 183.61.9.199 ### 2012-8-25 7:2:27 1 deny from 204.93.180.2 ### 2012-8-24 5:47:7 4 deny from 94.120.178.219 ### 2012-8-23 15:1:56 4 deny from 114.35.48.216 ### 2012-8-23 7:1:46 1 deny from 123.100.0.42 ### 2012-8-18 17:47:29 4 deny from 88.230.239.155 ### 2012-8-18 16:17:15 2 deny from 93.120.202.251 ### 2012-8-18 7:1:57 1 deny from 180.213.13.251 ### 2012-8-17 7:1:31 1 deny from 203.211.146.130 ### 2012-8-17 7:1:31 1 deny from 202.101.167.117 ### 2012-8-13 7:0:17 1 deny from 92.27.131.194 ### 2012-8-13 7:0:17 1 deny from 188.132.216.98 ### 2012-8-13 1:15:14 4 deny from 188.40.90.214 ### 2012-8-10 7:1:30 1 deny from 93.75.188.54 ### 2012-8-8 7:0:52 1 deny from 64.120.225.218 ### 2012-8-1 7:0:56 1 deny from 111.100.38.187 ### 2012-7-23 7:0:29 1 deny from 213.253.20.165 ### 2012-7-22 15:15:17 2 deny from 178.66.206.34 ### 2012-7-20 7:1:42 1 deny from 89.248.106.47 ### 2012-7-17 7:0:35 1 deny from 72.232.147.170 ### 2012-7-14 6:17:21 2 deny from 84.244.18.115 ### 2012-7-12 15:16:37 4 deny from 195.246.8.112 ### 2012-7-11 6:31:6 4 deny from 89.165.245.152 ### 2012-7-10 0:45:35 4 deny from 200.51.96.84 ### 2012-7-5 7:1:46 1 deny from 200.212.156.14 ### 2012-7-2 8:0:18 2 deny from 195.42.102.21 ### 2012-7-1 14:30:10 4 deny from 180.71.58.184 ### 2012-6-22 7:2:59 1 deny from 113.161.71.62 ### 2012-6-21 7:2:19 1 deny from 78.176.100.89 ### 2012-6-17 17:0:20 4 deny from 116.126.241.200 ### 2012-6-17 3:18:44 4 deny from 188.134.45.107 ### 2012-6-13 5:16:12 4 deny from 117.55.226.41 ### 2012-6-9 2:18:41 4 deny from 78.165.131.202 ### 2012-6-8 7:3:5 1 deny from 220.194.62.246 ### 2012-6-7 11:2:37 4 deny from 220.194.56.189 ### 2012-6-3 6:0:5 4 deny from 212.3.106.249 ### 2012-6-2 7:4:1 1 deny from 106.187.38.79 ### 2012-6-2 7:4:1 1 deny from 209.168.204.34 ### 2012-5-30 7:2:17 1 deny from 201.198.4.90 ### 2012-5-28 7:0:54 1 deny from 85.135.21.250 ### 2012-5-27 6:0:12 2 deny from 193.219.168.126 ### 2012-5-23 7:2:13 1 deny from 62.212.74.141 ### 2012-5-21 22:1:21 2 deny from 91.205.96.19 ### 2012-5-21 9:45:49 4 deny from 64.62.158.49 ### 2012-5-21 7:30:46 4 deny from 186.215.212.134 ### 2012-5-20 23:15:45 2 deny from 95.55.114.32 ### 2012-5-17 13:32:56 2 deny from 195.239.102.198 ### 2012-5-17 7:2:38 1 deny from 202.109.73.228 ### 2012-5-17 7:2:38 1 deny from 62.48.143.170 ### 2012-5-16 7:1:55 1 deny from 190.123.10.135 ### 2012-5-12 11:3:18 2 deny from 94.137.203.10 ### 2012-5-12 6:47:56 4 deny from 89.200.169.96 ### 2012-5-12 2:17:52 4 deny from 202.143.169.18 ### 2012-5-4 7:2:27 1 deny from 85.114.130.95 ### 2012-5-3 22:47:19 4 deny from 81.33.5.232 ### 2012-5-3 13:1:56 4 deny from 1.212.80.158 ### 2012-4-30 22:0:45 2 deny from 109.184.90.235 ### 2012-4-27 7:2:55 1 deny from 50.135.238.25 ### 2012-4-21 7:3:33 1 deny from 109.104.88.126 ### 2012-4-19 8:47:25 4 deny from 200.196.48.40 ### 2012-4-19 7:2:18 1 deny from 86.127.54.186 ### 2012-4-18 7:1:39 1 deny from 78.90.210.24 ### 2012-4-16 7:0:23 1 deny from 122.166.96.131 ### 2012-4-14 19:49:8 2 deny from 212.93.105.70 ### 2012-4-14 19:49:8 4 deny from 212.93.105.70 ### 2012-4-13 14:18:28 4 deny from 203.211.140.185 ### 2012-4-12 15:2:55 4 deny from 91.74.177.122 ### 2012-4-12 14:47:53 4 deny from 80.33.117.201 ### 2012-4-12 14:47:53 4 deny from 203.29.67.138 ### 2012-4-11 7:1:59 1 deny from 190.247.109.41 ### 2012-4-10 7:1:12 1 deny from 176.9.163.187 ### 2012-4-10 5:1:12 4 deny from 80.35.97.91 ### 2012-4-8 23:0:30 4 deny from 203.91.121.70 ### 2012-4-6 10:33:25 4 deny from 94.23.40.151 ### 2012-4-6 7:3:18 1 deny from 203.145.202.117 ### 2012-4-4 9:17:5 4 deny from 87.118.116.125 ### 2012-4-3 10:1:14 4 deny from 178.18.19.74 ### 2012-4-3 10:1:14 4 deny from 216.240.57.232 ### 2012-4-2 7:0:29 1 deny from 85.25.117.175 ### 2012-4-1 9:30:5 4 deny from 190.254.23.85 ### 2012-3-30 7:3:21 1 deny from 190.136.44.74 ### 2012-3-29 7:2:44 1 deny from 41.133.111.146 ### 2012-3-29 3:32:40 2 deny from 78.152.171.242 ### 2012-3-23 22:3:54 4 deny from 222.135.145.2 ### 2012-3-22 21:18:17 4 deny from 151.132.106.65 ### 2012-3-22 18:18:12 4 deny from 217.219.244.41 ### 2012-3-21 2:47:4 4 deny from 66.135.40.74 ### 2012-3-20 19:31:54 4 deny from 124.16.141.140 ### 2012-3-19 3:0:32 4 deny from 220.155.1.163 ### 2012-3-18 6:45:4 4 deny from 202.134.0.212 ### 2012-3-17 7:4:8 1 deny from 92.53.97.222 ### 2012-3-16 19:3:56 4 deny from 94.73.242.4 ### 2012-3-16 7:3:33 1 deny from 188.138.40.166 ### 2012-3-14 22:47:42 4 deny from 62.243.224.85 ### 2012-3-14 6:17:8 4 deny from 140.113.86.230 ### 2012-3-12 7:0:42 1 deny from 65.111.165.90 ### 2012-3-11 14:30:19 4 deny from 91.207.4.74 ### 2012-3-11 6:0:4 4 deny from 64.127.117.99 ### 2012-3-9 10:47:48 2 deny from 211.210.3.214 ### 2012-3-8 18:17:38 2 deny from 195.42.102.25 ### 2012-3-8 8:32:29 4 deny from 46.4.241.249 ### 2012-3-8 7:2:28 1 deny from 87.106.70.34 ### 2012-3-7 3:2:2 4 deny from 219.232.242.157 ### 2012-3-5 17:1:8 4 deny from 74.126.144.60 ### 2012-3-5 13:46:1 2 deny from 62.84.36.66 ### 2012-3-3 23:4:35 4 deny from 107.21.203.94 ### 2012-3-1 3:2:46 4 deny from 79.99.195.215 ### 2012-2-28 14:1:40 4 deny from 46.249.57.198 ### 2012-2-27 7:0:30 1 deny from 49.212.99.63 ### 2012-2-26 5:30:4 4 deny from 121.12.149.109 ### 2012-2-26 4:30:4 4 deny from 50.30.33.112 ### 2012-2-25 2:33:37 4 deny from 190.0.163.14 ### 2012-2-24 1:33:0 4 deny from 27.22.85.10 ### 2012-2-21 14:1:51 2 deny from 79.135.217.67 ### 2012-2-20 23:16:8 4 deny from 60.171.147.155 ### 2012-2-20 7:0:35 1 deny from 152.8.38.225 ### 2012-2-20 7:0:35 1 deny from 200.57.93.65 ### 2012-2-18 21:49:36 4 deny from 1.9.7.197 ### 2012-2-18 7:4:19 1 deny from 119.1.200.130 ### 2012-2-17 7:33:40 4 deny from 212.79.231.249 ### 2012-2-16 7:3:5 1 deny from 116.55.227.247 ### 2012-2-15 20:32:50 2 deny from 178.204.27.123 ### 2012-2-15 7:2:7 1 deny from 201.144.155.198 ### 2012-2-15 3:47:6 4 deny from 208.87.3.39 ### 2012-2-14 20:1:59 4 deny from 222.184.79.37 ### 2012-2-13 7:0:34 1 deny from 70.84.50.186 ### 2012-2-11 23:49:19 4 deny from 115.238.177.3 ### 2012-2-10 2:18:14 4 deny from 202.53.64.153 ### 2012-2-8 7:1:49 1 deny from 149.255.38.145 ### 2012-2-7 5:1:2 4 deny from 216.35.196.17 ### 2012-2-3 10:18:36 2 deny from 217.118.79.30 ### 2012-2-2 7:2:47 1 deny from 220.249.99.34 ### 2012-2-1 14:17:19 4 deny from 137.48.131.12 ### 2012-2-1 14:17:19 4 deny from 93.184.46.218 ### 2012-2-1 7:1:51 1 deny from 78.38.76.194 ### 2012-1-30 7:0:34 1 deny from 218.108.85.245 ### 2012-1-27 7:3:13 1 deny from 129.10.115.233 ### 2012-1-26 7:2:33 1 deny from 213.142.136.235 ### 2012-1-24 23:16:55 4 deny from 182.48.50.137 ### 2012-1-21 8:20:17 4 deny from 200.58.129.12 ### 2012-1-20 15:4:30 4 deny from 119.188.7.166 ### 2012-1-20 7:4:6 1 deny from 212.20.30.61 ### 2012-1-19 7:3:19 1 deny from 222.73.45.162 ### 2012-1-17 18:2:13 2 deny from 38.101.148.126 ### 2012-1-16 16:1:10 4 deny from 212.78.79.10 ### 2012-1-14 7:4:30 1 deny from 85.68.206.202 ### 2012-1-14 7:4:30 1 deny from 213.143.251.33 ### 2012-1-13 13:4:3 4 deny from 98.143.34.184 ### 2012-1-11 7:17:33 4 deny from 113.33.193.121 ### 2012-1-10 16:1:55 2 deny from 195.98.74.178 ### 2012-1-9 18:1:15 2 deny from 178.184.122.229 ### 2012-1-9 18:1:15 4 deny from 178.184.122.229 ### 2012-1-9 7:0:49 1 deny from 94.126.16.17 ### 2012-1-9 2:15:48 2 deny from 80.249.82.211 ### 2012-1-5 14:1:46 4 deny from 62.149.169.250 ### 2012-1-3 1:30:41 4 deny from 195.246.60.242 ### 2012-1-1 21:0:18 4 deny from 222.82.219.140 ### 2012-1-1 20:45:18 4 deny from 210.229.139.57 ### 2011-12-30 23:48:45 4 deny from 118.26.232.210 ### 2011-12-30 19:18:38 4 deny from 125.18.240.87 ### 29-11-2011 14:30:54 4 deny from 202.28.37.63 ### 30-11-2011 10:47:48 1 deny from 186.115.4.27 ### 29-11-2011 14:30:54 1 deny from 186.115.4.27 deny from 147.251.48.4 Options Indexes MultiViews AllowOverride None Allow from from all Order allow,deny ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/" AllowOverride None Options ExecCGI Order allow,deny Allow from all