12 lines
147 B
Plaintext
12 lines
147 B
Plaintext
|
# /etc/httpd.conf
|
||
|
prefork 2
|
||
|
server "default" {
|
||
|
listen on * port 80
|
||
|
root "/htdocs"
|
||
|
location "/cgi-bin/*" {
|
||
|
fastcgi
|
||
|
root "/"
|
||
|
}
|
||
|
}
|
||
|
|