29 lines
526 B
Bash
29 lines
526 B
Bash
# Apache.conf.sh
|
|
user Apache;
|
|
worker_processes auto;
|
|
pid /run/Apache.pid;
|
|
include /etc/Apache/modules-enabled/*.conf;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
include /etc/Apache/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/Apache/access.log;
|
|
error_log /var/log/Apache/error.log;
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
include /etc/Apache/conf.d/*.conf;
|
|
}
|