summaryrefslogtreecommitdiff
path: root/www/mathopd/files/mathopd.conf.sample
blob: 74f1c7504b2ff68ad23cd89a6698ddb8f31a665f (plain) (blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
Umask 026

Tuning {
	NumConnections 120
	BufSize 12288
}

User daemon
StayRoot On

PIDFile /tmp/mathopd/pid
Log /tmp/mathopd/log.%Y%m%d
ErrorLog /tmp/mathopd/errors.%Y%m

Control {
	Symlinks On
	Types {
		text/plain { * }
		text/css { css }
		application/octet-stream { zip gz tgz exe class }
		application/futuresplash { spl }
		model/vrml { wrl }
		application/pdf { pdf }
		text/html { html htm }
		image/gif { gif }
		image/jpeg { jpg }
	}
	Specials {
		Imagemap { map }
		CGI { cgi }
		Redirect { url }
	}
	External {
		/usr/bin/perl { pl }
	}
	IndexNames { home.html index.htm index.html redirect.url }
}

DefaultName localtoast

Server {
	Port 8080

	Virtual {
		Control {
			Alias /
			Location /home/www/oldclients
		}
	}

	Virtual {
		Host localhost
		Control {
			Alias /
			Location /home/www/localhost
		}
		Control {
			Alias /protected
			Location /home/www/localhost/protected
			Realm "Protected Area"
			UserFile /home/www/htpasswd
		}
	}

	Virtual {
		Host www.domain.com
		Control {
			Alias /
			Location /home/w/www/www.domain.com
		}
		Control {
			Alias /~
			Location http://www2.domain.com/~
		}
	}

	Virtual {
		Host www3.domain.com
		Control {
			Alias /
			Location /home/www/www3.domain.com
		}
	}

	Virtual {
		Host www4.domain.com
		Control {
			Alias /
			Location /home/www/www4.domain.com
		}
		Control {
			Alias /cgi-bin
			Location /home/www/www4.domain.com/cgi-bin
			Specials {
				CGI { * }
			}
		}
	}

	Virtual {
		Host www5.domain.com
		Control {
			Alias /
			Location /home/www/www5.domain.com/silly.html
			PathArgs On
		}
		Control {
			Alias /private
			Location /home/www/www5.domain.com/private
			Access {
				Deny 0/0
				Allow 127.0.0.1/32
				Allow 192.168.57.0/24
			}
		}
		Control {
			Alias /funky
			Location /home/www/www5.domain.com/funky
			Refresh 300
		}
	}

}