UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.1K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘HOSTING BY UNDERCODE TUTORIAL FOR BEGINER
t.me/UnderCodeTesting

πŸ¦‘ π•ƒπ”Όπ•‹π•Š π•Šπ•‹π”Έβ„π•‹ :

> httpd.conf file comments for Apache ServerThe reference here is the Apache Server

1) ServerType standalone #Set whether the
server is to be started in standalone mode or by the internet server program inetd. The former is generally used.

2) ServerRoot "d: / Apache" #Set the home
directory of the server, which is used to store server settings files, error files, and log files.

3) PidFile logs / httpd.pid #When the
program starts, save the process ID (process id) of the parent process httpd in this file. This file name can be changed with the PidFile command.

4) ScoreBoardFile logs / apache_status #Set
the log files of some execution programs of the WWW server on the network.

#ResourceConfig conf / srm.conf
#AccessConfig conf / access.conf #The
contents of these two files are already included in the httpd.conf file.

5) Timeout 300 #If the
client has not been connected for 300 seconds, or the server has not transmitted data to the client for 300 seconds, it will automatically disconnect.

6) KeepAlive On #Set
whether to support the resume function.

7) MaxKeepAliveRequests 100 #Set
the number of functions that support resume transmission . The larger the number, the more hard disk space is wasted. Set to 0 for more than continuous transmission.

8) KeepAliveTimeout 15 #If
the user has not sent a request to the server after 15 seconds, then he cannot resume the transmission.

9) MaxRequestsPerChild 0
#Set the number of child processes in the same time.

ThreadsPerChild 50 #Set
the number of processes used by the server.

#Listen 3000
#Listen 12.34.56.78:80 #Allow
access to the server using another port or IP. In this example, the Port is 3000 and the IP is 12.34.56.78:80.

#BindAddress * #Set
Apache to listen on all IP, you can also specify it specifically.

#LoadModule anon_auth_module modules / ApacheModuleAuthAnon.dll
... #Open
the module that is not currently active.

#ExtendedStatus On #Set
the status information generated by the server.


πŸ¦‘ The reference here is the Apache Server1_3_12_win32 version.

Port 80 #Set the port
used by the server.

ServerAdmin you@your.address #Set
the E-Mail address of the server administrator.

#ServerName new.host.name
#Host name of the server. If you have a fixed IP address, you don't need to set it.

DocumentRoot "d: / Apache / htdocs" #Set
the directory where the html files of the site are stored.

<Directory />
Options FollowSymLinks
AllowOverride None
</ Directory>

πŸ¦‘ # Set / Directory directive. Specifically:
Option: defines the operations that can be performed in the directory. None means that you can only browse. FollowSymLinks allows pages to be connected elsewhere. ExecCGI allows CGI to be performed. MultiViews allows you to watch animations or listen to music. Indexes allows the server to return a formatted list of directories. Includes allows SSI. These settings can be checked. All can do anything but excludes MultiViews.
AllowOverride: Adding the None parameter means that anyone can browse the files in this directory. Other parameters are: FileInfo, AuthConfig, Limit.

UserDir "d: / Apache / users /"
#Define the directory where users store html files.

DirectoryIndex index.html #Defines
the file to be displayed first.

AccessFileName .htaccess #Define
the name of the access control file for each directory.

#CacheNegotiatedDocsDefines the
proxy server not to cache your pages. Not recommended for use.

UseCanonicalName On #The
server uses the server name specified by ServerName and the port address specified by Port.

WRITTEN BY UNDERCODE
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Apache Server's httpd.conf file commentsThe reference here is the Apache Server.._win32 version- OLD STABLE VERSION
twitter.com/undercodeNews

πŸ¦‘π•ƒπ”Όπ•‹' π•Š π•Šπ•‹π”Έβ„π•‹ :


1) ServerType standalone #Set whether the
server is started separately (standalone) or through the internet server inetd. The former is generally used.

2) ServerRoot "d: / Apache" #Set the
server's Home directory to store the server's configuration files, error files, and log files.

PidFile logs / httpd.pid #When the
program starts, store the process ID of the parent process httpd in this file. This file name can be changed with the PidFile command.

3) ScoreBoardFile logs / apache_status #Set
the log files of some execution programs of the WWW server on the network.

#ResourceConfig conf / srm.conf
#AccessConfig conf / access.conf #The
contents of these two files are already included in the httpd.conf file.

Timeout 300 #If the
client has not been connected for 300 seconds, or the server has not transmitted data to the client for 300 seconds, it will automatically disconnect.

KeepAlive On #Set
whether to support the resume function.

MaxKeepAliveRequests 100 #Set
the number of resume transmission functions. The larger the number, the more wasted hard disk space. Set to 0 for more than continuous transmission.

KeepAliveTimeout 15 #If
the user has not sent a request to the server after 15 seconds, he cannot resume the transmission.

MaxRequestsPerChild 0
#Set the number of child processes at the same time.

ThreadsPerChild 50 #Set
the number of processes used by the server.

#Listen 3000
#Listen 12.34.56.78:80 #Allow the
use of other ports or IPs to access the server. In this example, the Port is 3000 and the IP is 12.34.56.78:80.

#BindAddress * #Set
Apache to listen to all IPs, which can also be specified specifically.

#LoadModule anon_auth_module modules / ApacheModuleAuthAnon.dll
...... #Open
the module that is not currently activated for reservation.

#ExtendedStatus On #Set
the status information generated by the server.


The reference here is the Apache Server1_3_12_win32 version.

Port 80 #Set the port
used by the server.

ServerAdmin you@your.address #Set
the E-Mail address of the server administrator.

#ServerName new.host.name
#Host name of the server. If you have a fixed IP address, you do not need to set it.

DocumentRoot "d: / Apache / htdocs" #Set
the directory for storing site html files.

<Directory />
Options FollowSymLinks
AllowOverride None
</ Directory>
# Setup / Directory instructions. Specifically:
Option: defines the operations that can be performed in the directory. None means you can only browse, FollowSymLinks allows the page to connect to other places, ExecCGI allows you to perform CGI, MultiViews allows operations such as watching animation or listening to music, Indexes allows the server to return a formatted list of directories, and Includes allows the use of SSI. These settings can be checked. All can do anything, but does not include MultiViews.
AllowOverride: Add None parameter to indicate that anyone can browse the files in this directory. Other parameters are: FileInfo, AuthConfig, Limit.

UserDir "d: / Apache / users /"
#Define the directory where users store html files.

DirectoryIndex index.html #Define
the file to be displayed first.

AccessFileName .htaccess #Define
the name of each directory access control file.

#CacheNegotiatedDocs
Define that the proxy server should not cache your pages. Not recommended for use.

UseCanonicalName On #The
server uses the server name specified by ServerName and the port address specified by Port.

written by undercoders

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁