1 |
unnilennium |
1.1 |
diff -N -c -r e-smith-user-webspace-0.1.vanilla/root/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/50UserDir00 e-smith-user-webspace-0.1/root/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/50UserDir00 |
2 |
|
|
*** e-smith-user-webspace-0.1.vanilla/root/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/50UserDir00 Thu Jan 1 10:00:00 1970 |
3 |
|
|
--- e-smith-user-webspace-0.1/root/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/50UserDir00 Wed Nov 22 12:44:13 2000 |
4 |
|
|
*************** |
5 |
|
|
*** 0 **** |
6 |
|
|
--- 1,12 ---- |
7 |
|
|
+ |
8 |
|
|
+ # UserDir: The name of the directory which is appended onto a user's home |
9 |
|
|
+ # directory if a ~user request is recieved. |
10 |
|
|
+ { |
11 |
|
|
+ my %conf; |
12 |
|
|
+ tie %conf, 'esmith::config'; |
13 |
|
|
+ |
14 |
|
|
+ (defined($conf{'UserPublicWeb'}) && ($conf{'UserPublicWeb'} eq "on")) |
15 |
|
|
+ ? "UserDir home/public_html" |
16 |
|
|
+ : "#UserDir home/public_html" |
17 |
|
|
+ } |
18 |
|
|
+ |