1 |
jpp |
1.1 |
diff -Nur --no-dereference smeserver-webshare-1.0.0.old/createlinks smeserver-webshare-1.0.0/createlinks |
2 |
|
|
--- smeserver-webshare-1.0.0.old/createlinks 2002-05-05 22:44:40.000000000 -0400 |
3 |
jpp |
1.3 |
+++ smeserver-webshare-1.0.0/createlinks 2022-08-01 23:57:14.361000000 -0400 |
4 |
|
|
@@ -2,20 +2,25 @@ |
5 |
jpp |
1.2 |
# This script creates the symlinks needed by this RPM |
6 |
|
|
# Specific support exists to create symlinks within e-smith web "panels" |
7 |
|
|
# and for links from named "events" directories into the "actions" directory |
8 |
jpp |
1.3 |
- |
9 |
|
|
-sub panel_link |
10 |
|
|
-{ |
11 |
|
|
- my ($function, $panel) = @_; |
12 |
|
|
- |
13 |
|
|
- unlink "root/etc/e-smith/web/panels/$panel/cgi-bin/$function"; |
14 |
|
|
- symlink("../../../functions/$function", |
15 |
|
|
- "root/etc/e-smith/web/panels/$panel/cgi-bin/$function") |
16 |
|
|
- or die "Can't symlink to root/etc/e-smith/web/panels/$panel". |
17 |
|
|
- "/cgi-bin/$function: $!"; |
18 |
|
|
-} |
19 |
jpp |
1.2 |
+use esmith::Build::CreateLinks qw(:all); |
20 |
|
|
|
21 |
jpp |
1.3 |
#-------------------------------------------------- |
22 |
|
|
# functions for user and manager panel |
23 |
jpp |
1.1 |
#-------------------------------------------------- |
24 |
|
|
my $panel = "manager"; |
25 |
|
|
panel_link("webshare", $panel); |
26 |
|
|
+ |
27 |
|
|
+my $event = "smeserver-webshare-update"; |
28 |
|
|
+event_templates($event, qw( |
29 |
|
|
+/etc/httpd/conf/httpd.conf |
30 |
|
|
+)); |
31 |
|
|
+ |
32 |
|
|
+event_services($event, qw( |
33 |
|
|
+ php-fpm restart |
34 |
|
|
+ httpd-e-smith restart |
35 |
|
|
+)); |
36 |
|
|
+ |
37 |
|
|
+use esmith::Build::Backup qw(:all); |
38 |
|
|
+backup_includes("smeserver-webshare", qw( |
39 |
|
|
+/opt/webshare |
40 |
|
|
+)); |
41 |
|
|
diff -Nur --no-dereference smeserver-webshare-1.0.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias smeserver-webshare-1.0.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias |
42 |
|
|
--- smeserver-webshare-1.0.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias 2022-08-01 23:41:07.957000000 -0400 |
43 |
|
|
+++ smeserver-webshare-1.0.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias 2022-08-01 23:43:13.776000000 -0400 |
44 |
|
|
@@ -27,8 +27,9 @@ |
45 |
|
|
$OUT .= " AuthUserFile \/home\/e-smith\/db\/webshare\/htpasswd.$key\n"; |
46 |
|
|
$OUT .= " Require valid-user\n"; |
47 |
|
|
$OUT .= " AddType application\/x-httpd-php \.php \.php3\n"; |
48 |
|
|
- $OUT .= " php_flag magic_quotes_gpc on\n"; |
49 |
|
|
- $OUT .= " php_flag track_vars on\n"; |
50 |
|
|
+ $OUT .= " <FilesMatch .php>\n"; |
51 |
|
|
+ $OUT .= ' SetHandler "proxy:unix:/var/run/php-fpm/php.sock|fcgi://localhost"'."\n"; |
52 |
|
|
+ $OUT .= " </FilesMatch>\n"; |
53 |
|
|
$OUT .= "<\/Directory>\n"; |
54 |
|
|
$OUT .= "\n"; |
55 |
|
|
} |