initial commit of file from CVS for smeserver-mediawiki on Sat Sep 7 20:40:03 AEST 2024
This commit is contained in:
1
root/etc/e-smith/db/accounts/defaults/mediawiki/type
Normal file
1
root/etc/e-smith/db/accounts/defaults/mediawiki/type
Normal file
@@ -0,0 +1 @@
|
||||
reserved
|
@@ -0,0 +1 @@
|
||||
mediawiki
|
@@ -0,0 +1 @@
|
||||
mediawikiuser
|
@@ -0,0 +1 @@
|
||||
off
|
@@ -0,0 +1 @@
|
||||
MediaWiki
|
@@ -0,0 +1 @@
|
||||
global
|
@@ -0,0 +1 @@
|
||||
service
|
37
root/etc/e-smith/db/configuration/migrate/98groupoffice
Normal file
37
root/etc/e-smith/db/configuration/migrate/98groupoffice
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
my $rec = $DB->get('mediawiki')
|
||||
|| $DB->new_record('mediawiki', {type => 'service'});
|
||||
|
||||
my $pw = $rec->prop('DbPassword');
|
||||
|
||||
return "" if $pw;
|
||||
if (not $pw or length($pw) < 57)
|
||||
{
|
||||
use MIME::Base64 qw(encode_base64);
|
||||
|
||||
$pw = "not set due to error";
|
||||
|
||||
if ( open( RANDOM, "/dev/urandom" ) )
|
||||
{
|
||||
my $buf;
|
||||
# 57 bytes is a full line of Base64 coding, and contains
|
||||
# 456 bits of randomness - given a perfectly random /dev/random
|
||||
if ( read( RANDOM, $buf, 57 ) != 57 )
|
||||
{
|
||||
warn("Short read from /dev/random: $!");
|
||||
}
|
||||
else
|
||||
{
|
||||
$pw = encode_base64($buf);
|
||||
chomp $pw;
|
||||
}
|
||||
close RANDOM;
|
||||
}
|
||||
else
|
||||
{
|
||||
warn "Could not open /dev/urandom: $!";
|
||||
}
|
||||
|
||||
$rec->set_prop('DbPassword', $pw);
|
||||
}
|
||||
}
|
124
root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/95mediawiki
Normal file
124
root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/95mediawiki
Normal file
@@ -0,0 +1,124 @@
|
||||
|
||||
#------------------------------------------------------------
|
||||
# Mediawiki
|
||||
#------------------------------------------------------------
|
||||
Alias /mediawiki /opt/mediawiki
|
||||
Alias /wiki /opt/mediawiki/index.php
|
||||
|
||||
|
||||
<Directory /opt/mediawiki>
|
||||
{
|
||||
my $mwsec = $mediawiki{'HTTPS'} || "off";
|
||||
if ($mwsec eq "off")
|
||||
{
|
||||
$OUT .= " # SSLRequireSSL on";
|
||||
} else {
|
||||
$OUT .= " SSLRequireSSL on";
|
||||
}
|
||||
}
|
||||
{
|
||||
|
||||
my $version = '74';
|
||||
$OUT .= qq(
|
||||
AddType application/x-httpd-php .php
|
||||
|
||||
<FilesMatch .php\$\>
|
||||
SetHandler "proxy:unix:/var/run/php-fpm/php$version.sock|fcgi://localhost"
|
||||
</FilesMatch>
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
Options FollowSymLinks
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/includes>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/languages>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/maintenance>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/math>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/tests>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
<Directory /opt/mediawiki/maintenance/archives>
|
||||
order deny,allow
|
||||
{
|
||||
my $mwiki = $mediawiki{'PublicAccess'} || "local";
|
||||
if ($mwiki eq "local")
|
||||
{
|
||||
$OUT .= " Require ip $localAccess";
|
||||
} else {
|
||||
$OUT .= " Require all granted";
|
||||
}
|
||||
}
|
||||
</Directory>
|
||||
|
||||
#------------------------------------------------------------
|
||||
|
@@ -0,0 +1,19 @@
|
||||
{
|
||||
|
||||
if ($port eq "80")
|
||||
{
|
||||
my $mwsec = $mediawiki{'HTTPS'} || "off";
|
||||
if ($mwsec eq "off")
|
||||
{
|
||||
$OUT = ' #';
|
||||
}
|
||||
else
|
||||
{
|
||||
$OUT = ' RewriteRule ^/wiki(/.*|$) https://%{HTTP_HOST}/wiki$1 [L,R]';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$OUT = ' #';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user