-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashttpd.conf
More file actions
41 lines (30 loc) · 839 Bytes
/
bashttpd.conf
File metadata and controls
41 lines (30 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Path to the configuration files for each website
# default: sites-enabled
CONFIG_PATH=sites-enabled
# Path to pid files
# default: locks
PID_PATH=locks
# Path to log files
# default: logs
LOG_PATH=logs
# Path to individual connections
CONN_PATH=conn
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# These can be overwritten by site specific configuration files #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Port to run the server on
# Anything lower than 1024 will require root privileges
PORT=80
# Root directory from which documents are served
ROOT=/var/www
# User under which the server is run
USER=root
# Log paths
ACCESS_LOG=logs/access.log
ERROR_LOG=logs/error.log
# Default index file
INDEX=( index.sh index.html )
# File listing
LISTING=1
# File handlers
HANDLERS=( sh:bash )