chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
---- Changes since 1.150 ----
Added an option when creating a virtual server to add a <Directory> section allowing access to its document root.
Included support for the optional mod_bandwidth Apache module and it's directives.
Included support for the optional mod_dav Apache module.
---- Changes since 1.180 ----
Added support for php_admin_value and php_admin_flag PHP4 directives.
When adding a virtual server, the module will check to ensure that it is actually available to Apache. This avoids problems with the 'File or directory to add virtual servers to' option on the Module Config page being set to something bogus.
---- Changes since 1.190 ----
ProxyPass and ProxyPassReverse directives can now use the ! option to prevent proxying for some path.
---- Changes since 1.200 ----
When first using the module, users will no longer be forced to select which Apache modules are installed - instead, this is detected automatically.
Added a Module Config option for specifying the filename template for new virtual server conf files, instead of always using DOMAINNAME.conf
When a virtual server in it's own private config file is deleted, the entire file will be removed to avoid leaving empty .conf files around.
---- Changes since 1.240 ----
Apache -D variables are now automatically detected on SuSE, Redhat and Mandrake systems, rather than needing to be entered manually.
Added support for the SSLPassPhraseDialog directive, which allows the password for an SSL key to be stored in a file rather than needing to be entered when the server is started.
---- Changes since 1.250 ----
Added a Module Config option for a directory to symlink new virtual host files from, to support the configuration system used by Debian Linux.
Added checkboxes and a button to the module's main page for deleting multiple virtual hosts at once.
---- Changes since 1.270 ----
Added support for new modules and directives in Apache 2.2.0.
Wildcard includes inside <Virtualhost> sections are now supported.
---- Changes since 1.290 ----
Changed default paths on Debian to use Apache 2.
On the Edit Directives page for a virtual host, if multiple files are used (via Include directives), you can now select which one to edit.
---- Changes since 1.300 ----
Added support for IPv6 addresses.
---- Changes since 1.310 ----
Added an access control option to limit alias targets and document roots to a directory.
When upgrading Webmin, the Apache module's list of installed modules is automatically re-detected.
---- Changes since 1.330 ----
Added tabs to break the module's main page down into more readable sections.
Changed all code to use ui-lib.pl functions, for better themeing.
---- Changes since 1.350 ----
On Debian and Ubuntu systems, replaced the existing pages for selecting Apache modules with one that that configures the /etc/apache2/mods-enabled directory, for much simpler and more workable control over modules.
---- Changes since 1.360 ----
Available Apache modules are now fully automatically detected on all operating systems, which does away with the Re-Configure Known Modules page.
---- Changes since 1.400 ----
Moved the SSL password option to the global settings level, to correspond with the way Apache expects it.
---- Changes since 1.410 ----
Added support for the funny ${APACHE_RUN_USER} and ${APACHE_PID_FILE} variables seen in apache2.conf on Ubuntu 8.04.
---- Changes since 1.430 ----
When a virtual host's base directory is changed, all <directory> blocks under it are updated too.
When stopping and re-starting Apache, give it time to fully stop before continuing.
---- Changes since 1.450 ----
Fixed handling of IPv6 addresses so that Apache's [address] format is now fully supported.
---- Changes since 1.470 ----
Fixed bug that preventing saving of virtual hosts with multiple addresses, one of which is IPv6.
Full Bulgarian translation, thanks to King.
---- Changes since 1.510 ----
The default port on the Create virtual host tab is now set to better match the name-based virtual host ports.
---- Changes since 1.580 ----
Apache virtual hosts owned by Virtualmin can no longer have their address, port, name or document directory changed.
+112
View File
@@ -0,0 +1,112 @@
require 'apache-lib.pl';
# acl_security_form(&options)
# Output HTML for editing security options for the apache module
sub acl_security_form
{
my ($o) = @_;
my $conf = &get_config();
my @virts = ( { 'value' => '__default__' },
&find_directive_struct("VirtualHost", $conf) );
my @vsel = $o->{'virts'} eq '*' ? () : split(/\s+/, $o->{'virts'});
my %vcan = map { $_, 1 } @vsel;
my @vopts;
foreach my $v (@virts) {
my @vn = &virt_acl_name($v);
my ($can) = grep { $vcan{$_} } @vn;
my $show = $can || $vn[0];
push(@vopts, [ $show,
$show eq "__default__" ? $text{'acl_defserv'}
: $show ]);
delete($vcan{$can}) if ($can);
}
print &ui_table_row($text{'acl_virts'},
&ui_radio("virts_def", $o->{'virts'} eq '*' ? 1 : 0,
[ [ 1, $text{'acl_vall'} ],
[ 0, $text{'acl_vsel'} ] ])."<br>\n".
&ui_select("virts", \@vsel, \@vopts, 5, 1, 1),
3);
print &ui_table_row($text{'acl_global'},
&ui_select("global",
defined($o->{'global'}) && $o->{'global'} ne '' ?
$o->{'global'} : 0,
[ [ 1, $text{'yes'} ],
[ 2, $text{'acl_htaccess'} ],
[ 0, $text{'no'} ] ]));
print &ui_table_row($text{'acl_create'},
&ui_yesno_radio("create", $o->{'create'}));
print &ui_table_row($text{'acl_vuser'},
&ui_yesno_radio("vuser", $o->{'vuser'}));
print &ui_table_row($text{'acl_vaddr'},
&ui_yesno_radio("vaddr", $o->{'vaddr'}));
print &ui_table_row($text{'acl_pipe'},
&ui_yesno_radio("pipe", $o->{'pipe'}));
print &ui_table_row($text{'acl_stop'},
&ui_yesno_radio("stop", $o->{'stop'}));
print &ui_table_row($text{'acl_apply'},
&ui_yesno_radio("apply", $o->{'apply'}));
print &ui_table_row($text{'acl_names'},
&ui_yesno_radio("names", $o->{'names'}));
print &ui_table_row($text{'acl_dir'},
&ui_textbox("dir", $o->{'dir'}, 30)." ".
&file_chooser_button("dir", 1),
3);
print &ui_table_row($text{'acl_aliasdir'},
&ui_textbox("aliasdir", $o->{'aliasdir'}, 30)." ".
&file_chooser_button("aliasdir", 1),
3);
my @typesel = $o->{'types'} eq '*' ? () : split(/\s+/, $o->{'types'});
my @typeopts;
for (my $i = 0; $text{"type_$i"}; $i++) {
push(@typeopts, [ $i, $text{"type_$i"} ]);
}
print &ui_table_row($text{'acl_types'},
&ui_radio("types_def", $o->{'types'} eq '*' ? 1 : 0,
[ [ 1, $text{'acl_all'} ],
[ 0, $text{'acl_sel'} ] ])."<br>\n".
&ui_select("types", \@typesel, \@typeopts, 5, 1),
3);
print &ui_table_row($text{'acl_dirs'},
&ui_radio("dirsmode", $o->{'dirsmode'},
[ [ 0, $text{'acl_dirs0'} ],
[ 1, $text{'acl_dirs1'} ],
[ 2, $text{'acl_dirs2'} ] ])."<br>\n".
&ui_textarea("dirs", join("\n", split(/\s+/, $o->{'dirs'})), 5, 50),
3);
}
# acl_security_save(&options)
# Parse the form for security options for the apache module
sub acl_security_save
{
if ($in{'virts_def'}) {
$_[0]->{'virts'} = "*";
}
else {
$_[0]->{'virts'} = join(" ", split(/\0/, $in{'virts'}));
}
$_[0]->{'global'} = $in{'global'};
$_[0]->{'create'} = $in{'create'};
$_[0]->{'vuser'} = $in{'vuser'};
$_[0]->{'stop'} = $in{'stop'};
$_[0]->{'apply'} = $in{'apply'};
$_[0]->{'vaddr'} = $in{'vaddr'};
$_[0]->{'dir'} = $in{'dir'};
$_[0]->{'aliasdir'} = $in{'aliasdir'};
$_[0]->{'types'} = $in{'types_def'} ? '*'
: join(" ", split(/\0/, $in{'types'}));
$_[0]->{'pipe'} = $in{'pipe'};
$_[0]->{'names'} = $in{'names'};
$_[0]->{'dirsmode'} = $in{'dirsmode'};
$_[0]->{'dirs'} = join(" ", split(/\s+/, $in{'dirs'}));
}
+42
View File
@@ -0,0 +1,42 @@
#!/usr/local/bin/perl
# allmanual_form.cgi
# Display a text box for manually editing directives from one of the files
require './apache-lib.pl';
&ReadParse();
$access{'types'} eq '*' && $access{'virts'} eq '*' ||
&error($text{'manual_ecannot'});
&ui_print_header(undef, $text{'manual_configs'}, "");
$conf = &get_config();
@files = grep { -f $_ } &unique(map { $_->{'file'} } @$conf);
$in{'file'} = $files[0] if ($in{'file'} eq '');
print "<form action=allmanual_form.cgi>\n";
print "<input type=submit value='$text{'manual_file'}'>\n";
print "<select name=file>\n";
foreach $f (@files) {
printf "<option %s>%s</option>\n",
$f eq $in{'file'} ? 'selected' : '', $f;
$found++ if ($f eq $in{'file'});
}
print "</select></form>\n";
$found || &error($text{'manual_efile'});
print &ui_form_start("allmanual_save.cgi", "form-data");
print &ui_hidden("file", $in{'file'}),"\n";
# Display nicely too
if (&format_config_allowed()) {
$data = &read_file_lines($in{'file'}, 1);
&format_config($data);
$data = join("\n", @{$data});
}
else {
$data = &read_file_contents($in{'file'});
}
print &ui_textarea("data", $data, 20, 80, undef, undef,
"style='width:100%'"),"<br>\n";
print &ui_form_end([ [ "save", $text{'save'} ] ]);
&ui_print_footer("index.cgi?mode=global", $text{'index_return2'});
+32
View File
@@ -0,0 +1,32 @@
#!/usr/local/bin/perl
# allmanual_save.cgi
# Save an entire config file
require './apache-lib.pl';
&ReadParseMime();
$access{'types'} eq '*' && $access{'virts'} eq '*' ||
&error($text{'manual_ecannot'});
$conf = &get_config();
@files = &unique(map { $_->{'file'} } @$conf);
&indexof($in{'file'}, @files) >= 0 || &error($text{'manual_efile'});
$temp = &transname();
&execute_command("cp ".quotemeta($in{'file'})." ".quotemeta($temp));
$in{'data'} =~ s/\r//g;
&lock_file($in{'file'});
&open_tempfile(FILE, ">$in{'file'}");
&print_tempfile(FILE, $in{'data'});
&close_tempfile(FILE);
&unlock_file($in{'file'});
if ($config{'test_manual'}) {
$err = &test_config();
if ($err) {
&execute_command("mv ".quotemeta($temp)." ".quotemeta($in{'file'}));
&error(&text('manual_etest', "<pre>$err</pre>"));
}
}
unlink($temp);
&format_config_file($in{'file'});
&webmin_log("manual", undef, undef, { 'file' => $in{'file'} });
&redirect("index.cgi?mode=global");
+2737
View File
File diff suppressed because it is too large Load Diff
+152
View File
@@ -0,0 +1,152 @@
# auth-lib.pl
# Functions for editing text and dbm user files
# list_authusers(file)
# Returns an array of user names from the given file
sub list_authusers
{
local($_, @rv);
&open_readfile(HTPASSWD, $_[0]);
while(<HTPASSWD>) {
if (/^(\S+):(\S*)/) { push(@rv, $1); }
}
close(HTPASSWD);
return @rv;
}
# get_authuser(file, name)
sub get_authuser
{
local($_, $rv);
&open_readfile(HTPASSWD, $_[0]);
while(<HTPASSWD>) {
if (/^(\S+):(\S*)/ && $1 eq $_[1]) {
$rv = { 'user' => $1 , 'pass' => $2 };
}
}
close(HTPASSWD);
return $rv;
}
# save_authuser(file, olduser, &details)
sub save_authuser
{
local($_, @htpasswd);
&open_readfile(HTPASSWD, $_[0]);
@htpasswd = <HTPASSWD>;
close(HTPASSWD);
&open_tempfile(HTPASSWD, ">$_[0]");
foreach (@htpasswd) {
if (/^(\S+):(\S*)/ && $1 eq $_[1]) {
&print_tempfile(HTPASSWD, $_[2]->{'user'},":",$_[2]->{'pass'},"\n");
}
else {
&print_tempfile(HTPASSWD, $_);
}
}
&close_tempfile(HTPASSWD);
}
# create_authuser(file, &details)
# Add a new user to a file
sub create_authuser
{
&open_tempfile(HTPASSWD, ">> $_[0]");
&print_tempfile(HTPASSWD, $_[1]->{'user'},":",$_[1]->{'pass'},"\n");
&close_tempfile(HTPASSWD);
}
# delete_authuser(file, user)
# Delete some user from a file
sub delete_authuser
{
local($_, @htpasswd);
&open_readfile(HTPASSWD, $_[0]);
@htpasswd = <HTPASSWD>;
close(HTPASSWD);
&open_tempfile(HTPASSWD, "> $_[0]");
foreach (@htpasswd) {
if (!/^(\S+):(\S*)/ || $1 ne $_[1]) {
&print_tempfile(HTPASSWD, $_);
}
}
&close_tempfile(HTPASSWD);
}
###########################################################################
# Group Functions
###########################################################################
# list_authgroups(file)
# Returns an array of associative arrays containing information about
# groups from some text file
sub list_authgroups
{
local($_, @rv);
&open_readfile(HTGROUP, $_[0]);
while(<HTGROUP>) {
if (/^(\S+):\s*(.*)/) {
local($gr, @mems);
$gr = $1; @mems = split(/\s+/, $2);
push(@rv, { 'group' => $gr, 'members' => \@mems });
}
}
close(HTGROUP);
return @rv;
}
# get_authgroup(file, group)
sub get_authgroup
{
local(@tmp, $t);
@tmp = &list_authgroups($_[0]);
foreach $t (@tmp) {
if ($t->{'group'} eq $_[1]) { return $t; }
}
return undef;
}
# create_authgroup(file, &details)
sub create_authgroup
{
&open_tempfile(HTGROUP, ">> $_[0]");
&print_tempfile(HTGROUP, $_[1]->{'group'},": ",join(' ', @{$_[1]->{'members'}}),"\n");
&close_tempfile(HTGROUP);
}
# save_authgroup(file, oldgroup, &details)
sub save_authgroup
{
&open_readfile(HTGROUP, $_[0]);
@htgroup = <HTGROUP>;
close(HTGROUP);
&open_tempfile(HTGROUP, "> $_[0]");
foreach (@htgroup) {
if (/^(\S+):\s*(.*)/ && $1 eq $_[1]) {
&print_tempfile(HTGROUP, $_[2]->{'group'},": ",
join(' ', @{$_[2]->{'members'}}),"\n");
}
else {
&print_tempfile(HTGROUP, $_);
}
}
&close_tempfile(HTGROUP);
}
# delete_authgroup(file, group)
sub delete_authgroup
{
&open_readfile(HTGROUP, $_[0]);
@htgroup = <HTGROUP>;
close(HTGROUP);
&open_tempfile(HTGROUP, "> $_[0]");
foreach (@htgroup) {
if (!/^(\S+):\s*(.*)/ || $1 ne $_[1]) {
&print_tempfile(HTGROUP, $_);
}
}
&close_tempfile(HTGROUP);
}
1;
+290
View File
@@ -0,0 +1,290 @@
# autoindex.pl
# Directives in both mod_dir.pl and mod_autoindex.pl
@AddIcon_dirs = ("AddIcon", "AddIconByType", "AddIconByEncoding");
@AddIcon_descs = ("$text{'autoindex_fname'}", "$text{'autoindex_mime'}", "$text{'autoindex_enc'}");
sub edit_AddIcon_AddIconByType_AddIconByEncoding
{
local($rv, @all, $i, $j, $icon, $alt, $mode, $file);
$rv = "<table border>\n".
"<tr $tb> <td><b>$text{'autoindex_icon'}</b></td> <td><b>$text{'autoindex_alt'}</b></td>\n".
"<td><b>$text{'autoindex_match'}</b></td> <td><b>$text{'autoindex_fte'}</b></td></tr>\n";
@all = (@{$_[0]}, @{$_[1]}, @{$_[2]});
for($i=0; $i<=@all; $i++) {
$d = $all[$i];
if ($d) {
if ($d->{'value'} =~ /^\((.*),(\S+)\)\s*(.*)$/) {
$alt = $1; $icon = $2; $file = $3;
}
elsif ($d->{'value'} =~ /^(\S+)\s*(.*)$/) {
$alt = ""; $icon = $1; $file = $2;
}
$mode = &indexof($d->{'name'}, @AddIcon_dirs);
}
else { $alt = $icon = $file = ""; $mode = 0; }
$rv .="<tr $cb>\n";
$rv .="<td><input name=AddIcon_icon_$i size=25 value=\"$icon\"></td>\n";
$rv .="<td><input name=AddIcon_alt_$i size=10 value=\"$alt\"></td>\n";
$rv .="<td><select name=AddIcon_mode_$i>\n";
for($j=0; $j<@AddIcon_descs; $j++) {
$rv .= sprintf "<option value=$j %s>%s</option>\n",
$mode == $j ? "selected" : "", $AddIcon_descs[$j];
}
$rv .="</select></td>\n";
$rv .="<td><input name=AddIcon_file_$i size=20 value=\"$file\"></td>\n";
$rv .="</tr>\n";
}
$rv .= "</table>\n";
return (2, "$text{'autoindex_diricon'}", $rv);
}
sub save_AddIcon_AddIconByType_AddIconByEncoding
{
local($i, $icon, $alt, $file, $mode, $aref, @ai, @ait, @aie);
for($i=0; defined($in{"AddIcon_icon_$i"}); $i++) {
$icon = $in{"AddIcon_icon_$i"}; $alt = $in{"AddIcon_alt_$i"};
$mode = $in{"AddIcon_mode_$i"}; $file = $in{"AddIcon_file_$i"};
if ($icon !~ /\S/ && $file !~ /\S/) { next; }
$icon =~ /^\S+$/ || &error(&text('autoindex_eiconurl', $icon));
$file =~ /\S/ || &error(&text('autoindex_emiss', $AddIcon_descs[$mode], $icon));
$aref = $mode==0 ? \@ai : $mode==1 ? \@ait : \@aie;
if ($alt) { push(@$aref, "($alt,$icon) $file"); }
else { push(@$aref, "$icon $file"); }
}
return ( \@ai, \@ait, \@aie );
}
sub edit_DefaultIcon
{
return (1, "$text{'autoindex_deficon'}",
&opt_input($_[0]->{'value'}, "DefaultIcon", "$text{'autoindex_default'}", 20));
}
sub save_DefaultIcon
{
return &parse_opt("DefaultIcon", '^\S+$', "$text{'autoindex_edeficon'}");
}
@AddAlt_dirs = ("AddAlt", "AddAltByType", "AddAltByEncoding");
@AddAlt_descs = ("Filename", "MIME type", "Encoding");
sub edit_AddAlt_AddAltByType_AddAltByEncoding
{
local($rv, @all, $i, $j, $alt, $mode, $file);
$rv = "<table border>\n".
"<tr $tb> <td><b>$text{'autoindex_alt'}</b></td>\n".
"<td><b>$text{'autoindex_match'}</b></td> <td><b>$text{'autoindex_fte'}</b></td></tr>\n";
@all = (@{$_[0]}, @{$_[1]}, @{$_[2]});
for($i=0; $i<=@all; $i++) {
$d = $all[$i];
if ($d->{'value'}) {
$alt = $d->{'words'}->[0];
@w = @{$d->{'words'}};
$file = join(' ', @w[1..$#w]);
$mode = &indexof($d->{'name'}, @AddAlt_dirs);
}
else { $alt = $file = ""; $mode = 0; }
$rv .="<tr $cb>\n";
$rv .="<td><input name=AddAlt_alt_$i size=20 value=\"$alt\"></td>\n";
$rv .="<td><select name=AddAlt_mode_$i>\n";
for($j=0; $j<@AddAlt_descs; $j++) {
$rv .= sprintf "<option value=$j %s>%s</option>\n",
$mode == $j ? "selected" : "", $AddAlt_descs[$j];
}
$rv .="</select></td>\n";
$rv .="<td><input name=AddAlt_file_$i size=20 value=\"$file\"></td>\n";
$rv .="</tr>\n";
}
$rv .= "</table>\n";
return (2, "$text{'autoindex_diralt'}", $rv);
}
sub save_AddAlt_AddAltByType_AddAltByEncoding
{
local($i, $alt, $file, $mode, $aref, @ai, @ait, @aie);
for($i=0; defined($alt = $in{"AddAlt_alt_$i"}); $i++) {
$mode = $in{"AddAlt_mode_$i"}; $file = $in{"AddAlt_file_$i"};
if ($alt !~ /\S/ && $file !~ /\S/) { next; }
$file =~ /\S/ || &error(&text('autoindex_emissquot', $AddAlt_descs[$mode], $alt));
$aref = $mode==0 ? \@ai : $mode==1 ? \@ait : \@aie;
push(@$aref, "\"$alt\" $file");
}
return ( \@ai, \@ait, \@aie );
}
sub edit_AddDescription
{
local($rv, $i, $desc, $file);
$rv = "<table border>\n".
"<tr $tb> <td><b>$text{'autoindex_desc'}</b></td> <td><b>$text{'autoindex_fnames'}</b></td> </tr>\n";
for($i=0; $i<=@{$_[0]}; $i++) {
if ($_[0]->[$i] && $_[0]->[$i]->{'value'} =~ /^"(.*)"\s*(.*)$/)
{ $desc = $1; $file = $2; }
else { $desc = $file = ""; }
$rv .= "<tr $cb> <td><input size=40 name=AddDescription_desc_$i ".
"value=\"$desc\"></td>\n";
$rv .= "<td><input size=20 name=AddDescription_file_$i ".
"value=\"$file\"></td> </tr>\n";
}
$rv .= "</table>\n";
return (2, "$text{'autoindex_dirdesc'}", $rv);
}
sub save_AddDescription
{
local($i, $desc, $file, @rv);
for($i=0; defined($in{"AddDescription_desc_$i"}); $i++) {
$desc = $in{"AddDescription_desc_$i"};
$file = $in{"AddDescription_file_$i"};
if ($desc !~ /\S/ && $file !~ /\S/) { next; }
$desc =~ /\S/ || &error(&text('autoindex_enodesc', $file));
$file =~ /\S/ || &error(&text('autoindex_enofile', $desc));
push(@rv, "\"$desc\" $file");
}
return ( \@rv );
}
@IndexOptions_v =
( "FancyIndexing", "ScanHTMLTitles", "IconHeight", "IconWidth",
"SuppressColumnSorting", "SuppressDescription",
"SuppressHTMLPreamble", "SuppressLastModified", "SuppressSize",
"IconsAreLinks", "NameWidth", "DescriptionWidth", "FoldersFirst",
"HTMLTable", "IgnoreClient", "SuppressIcon", "SuppressRules",
"TrackModified", "VersionSort" );
@IndexOptions_d =
( $text{'autoindex_fancy'},
$text{'autoindex_htmltitle'},
$text{'autoindex_iheight'},
$text{'autoindex_iwidth'},
$text{'autoindex_sort'},
$text{'autoindex_fildesc'},
$text{'autoindex_htags'},
$text{'autoindex_mtime'},
$text{'autoindex_size'},
$text{'autoindex_iconlink'},
$text{'autoindex_fwidth'},
$text{'autoindex_dwidth'},
$text{'autoindex_dirfirst'},
$text{'autoindex_html'},
$text{'autoindex_client'},
$text{'autoindex_sicon'},
$text{'autoindex_srules'},
$text{'autoindex_track'},
$text{'autoindex_version'} );
@IndexOptions_i = ( 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0 );
@IndexOptions_n = ( 0, 0, 1.3, 1.3,
1.3, 0,
1.3, 0, 0,
1.302, 1.302, 1.310, 1.310,
2.023, 2.023, 2.023, 2.023,
2.023, 2.0 );
sub edit_IndexOptions_FancyIndexing
{
local($o, %opts, $i, $rv);
$rv = &choice_input($_[0] || $_[1] ? 0 : 1, "IndexOptions_def", 1,
"$text{'autoindex_default2'},1", "$text{'autoindex_select'},0");
foreach $o (split(/\s+/, $_[0]->{'value'})) {
if ($o =~ /^(\S+)=(\S+)$/) { $opts{$1} = $2; }
else { $opts{$o} = -1; }
}
if ($_[1]->{'value'} eq "on") { $opts{'FancyIndexing'} = -1; }
$rv .= "<table border><tr><td><table cellpadding=0>\n";
local $sw = 0;
for($i=0; $i<@IndexOptions_v; $i++) {
$o = $IndexOptions_v[$i];
next if ($_[2]->{'version'} < $IndexOptions_n[$i]);
$rv .= "<tr>\n" if (!$sw);
if ($IndexOptions_i[$i]) { $opts{$o} = -$opts{$o}-1; }
$rv .= sprintf "<td><input type=checkbox name=Index_$o value=1 %s> %s\n",
$opts{$o} ? "checked" : "", $IndexOptions_d[$i];
if ($o =~ /IconWidth|IconHeight/) {
$rv .= "&nbsp;";
$rv .= sprintf
"<input type=radio name=Index_${o}_def value=1 %s> $text{'autoindex_default3'}\n",
$opts{$o} < 0 ? "checked" : "";
$rv .= sprintf
"&nbsp;<input type=radio name=Index_${o}_def value=0 %s>\n",
$opts{$o} < 0 ? "" : "checked";
$rv .= sprintf
"<input name=Index_${o}_wh size=5 value=\"%s\"> $text{'autoindex_pixels'}\n",
$opts{$o} < 0 ? "" : $opts{$o};
}
elsif ($o =~ /NameWidth|DescriptionWidth/) {
$rv .= "&nbsp;";
$rv .= sprintf
"<input name=Index_${o}_w size=5 value=\"%s\"> $text{'autoindex_chars'}\n",
$opts{$o} < 0 ? "" : $opts{$o};
}
$rv .= "</td>";
$rv .= "</tr>\n" if ($sw);
$sw = !$sw;
}
$rv .= "</table></td></tr></table>\n";
return (2, "$text{'autoindex_diropt'}", $rv);
}
sub save_IndexOptions_FancyIndexing
{
local($i, $o, @rv, %opts);
if ($in{'IndexOptions_def'}) { return ( [ ], [ ] ); }
for($i=0; $i<@IndexOptions_v; $i++) {
$o = $IndexOptions_v[$i];
next if ($_[0]->{'version'} < $IndexOptions_n[$i]);
if ($in{"Index_$o"}) { $opts{$o} = -1; }
if ($o =~ /IconWidth|IconHeight/ &&
$in{"Index_${o}"} && !$in{"Index_${o}_def"}) {
$in{"Index_${o}_wh"} =~ /^[1-9]\d*$/ ||
&error(&text('autoindex_eiconsize', $in{"Index_${o}_wh"}));
$opts{$o} = $in{"Index_${o}_wh"};
}
elsif ($o =~ /NameWidth|DescriptionWidth/ && $in{"Index_${o}"}) {
$in{"Index_${o}_w"} =~ /^[1-9]\d*$/ ||
$in{"Index_${o}_w"} eq '*' ||
&error(&text('autoindex_ewidth', $in{"Index_$(o)_h"}));
$opts{$o} = $in{"Index_${o}_w"};
}
if ($IndexOptions_i[$i]) { $opts{$o} = -$opts{$o}-1; }
if ($opts{$o} < 0) { push(@rv, "$o"); }
elsif ($opts{$o} > 0) { push(@rv, "$o=$opts{$o}"); }
}
return ( [ join(' ', @rv) ], [ ] );
}
sub edit_HeaderName
{
return (1, "$text{'autoindex_dirhead'}",
&opt_input($_[0]->{'value'}, "HeaderName", "$text{'autoindex_default4'}", 20));
}
sub save_HeaderName
{
return &parse_opt("HeaderName", '^\S+$', "$text{'autoindex_edirhead'}");
}
sub edit_ReadmeName
{
return (1, "$text{'autoindex_dirfoot'}",
&opt_input($_[0]->{'value'}, "ReadmeName", "$text{'autoindex_default4'}", 20));
}
sub save_ReadmeName
{
return &parse_opt("ReadmeName", '^\S+$', "$text{'autoindex_edirfoot'}");
}
sub edit_IndexIgnore
{
local($rv, $i, @ii);
foreach $i (@{$_[0]}) { push(@ii, split(/\s+/, $i->{'value'})); }
$rv = join("\n", @ii);
return (1, "$text{'autoindex_ignore'}",
"<textarea name=IndexIgnore rows=5 cols=20>$rv</textarea>");
}
sub save_IndexIgnore
{
local(@rv); @rv = split(/\s+/, $in{'IndexIgnore'});
if (!@rv) { return ( [ ] ); }
else { return ( [ join(' ', @rv) ] ); }
}
1;
+72
View File
@@ -0,0 +1,72 @@
require 'apache-lib.pl';
# backup_config_files()
# Returns files and directories that can be backed up
sub backup_config_files
{
local @rv;
# Add main config files
local $conf = &get_config();
push(@rv, map { $_->{'file'} } @$conf);
# Add mime types file
local $mfile = &find_directive("TypesConfig", $conf);
if (!$mfile) { $mfile = $config{'mime_types'}; }
if (!$mfile) { $mfile = &server_root("etc/mime.types"); }
if (!-r $mfile) { $mfile = &server_root("conf/mime.types"); }
if ($mfile) {
push(@rv, &server_root($mfile));
}
# Add mime magic file
local $magic = &find_directive("MimeMagicFile", $conf);
if ($magic) {
push(@rv, &server_root($magic));
}
# Add all auth files
local $auth;
foreach $auth (&find_all_directives($conf, "AuthUserFile"),
&find_all_directives($conf, "AuthGroupFile")) {
push(@rv, &server_root($auth));
}
return &unique(@rv);
}
# pre_backup(&files)
# Called before the files are actually read
sub pre_backup
{
return undef;
}
# post_backup(&files)
# Called after the files are actually read
sub post_backup
{
return undef;
}
# pre_restore(&files)
# Called before the files are restored from a backup
sub pre_restore
{
return undef;
}
# post_restore(&files)
# Called after the files are restored from a backup
sub post_restore
{
local $pidfile = &get_pid_file();
if (&check_pid_file($pidfile)) {
return &restart_apache();
}
return undef;
}
1;
+64
View File
@@ -0,0 +1,64 @@
# browsermatch.pl
# Functions used in mod_browser.pl and mod_setenvif.pl
sub edit_BrowserMatch_BrowserMatchNoCase
{
local($d, @w, $i, @regex, @var, @val, @case, $rv);
foreach $d (@{$_[0]}, @{$_[1]}) {
@w = @{$d->{'words'}};
for($i=1; $i<@w; $i++) {
push(@regex, $w[0]);
if ($w[$i] =~ /^\!(\S+)$/) { push(@var, $1); push(@val, undef); }
elsif ($w[$i] =~ /^(\S+)=(\S*)$/) { push(@var, $1); push(@val, $2); }
else { push(@var, $w[$i]); push(@val, 1); }
if ($d->{'name'} eq "BrowserMatch") { push(@case, 1); }
else { push(@case, 0); }
}
}
push(@regex, ""); push(@var, ""); push(@val, ""); push(@case, 0);
$rv = "<table border>\n".
"<tr $tb> <td><b>$text{'browsermatch_regexp'}</b></td> <td><b>$text{'browsermatch_case'}</b></td>\n".
"<td><b>$text{'browsermatch_var'}</b></td> <td><b>$text{'browsermatch_value'}</b></td> </tr>\n";
for($i=0; $i<@regex; $i++) {
$rv .= "<tr $cb>\n";
$rv .= sprintf
"<td><input size=20 name=Browser_regex_$i value=\"%s\"></td>\n",
$regex[$i];
$rv .= "<td>".&choice_input($case[$i], "Browser_case_$i", 1,
"$text{'yes'},1", "$text{'no'},0")."</td>\n";
$rv .= sprintf
"<td><input size=20 name=Browser_var_$i value=\"%s\"></td>\n",
$var[$i];
$rv .= "<td>".&opt_input($val[$i], "Browser_val_$i",
"$text{'browsermatch_clear'}", 10)."</td>\n";
$rv .= "</tr>\n";
}
$rv .= "</table>\n";
return (2, "$text{'browsermatch_txt'}", $rv);
}
sub save_BrowserMatch_BrowserMatchNoCase
{
local($i, $regex, $case, $var, $val, $set, $lastbm, $lastbmnc, @bm, @bmnc);
for($i=0; defined($regex = $in{"Browser_regex_$i"}); $i++) {
$case = $in{"Browser_case_$i"}; $var = $in{"Browser_var_$i"};
if ($regex !~ /\S/ && $var !~ /\S/) { next; }
$var =~ /^\S+$/ || &error(&text('browsermatch_evar', $var));
$val = $in{"Browser_val_$i"};
$set = $in{"Browser_val_${i}_def"} ? "!$var" :
$val eq "1" ? $var : "$var=$val";
if ($case) {
if ($regex eq $lastbm) { $bm[$#bm] .= " $set"; }
else { push(@bm, "\"$regex\" $set"); }
$lastbm = $regex;
}
else {
if ($regex eq $lastbmnc) { $bmnc[$#bmnc] .= " $set"; }
else { push(@bmnc, "\"$regex\" $set"); }
$lastbmnc = $regex;
}
}
return ( \@bm, \@bmnc );
}
1;
+119
View File
@@ -0,0 +1,119 @@
# cache.pl
# Functions used by both mod_proxy.pl and the new apache caching modules
sub edit_CacheRoot
{
return (1, $text{'mod_proxy_dir'},
&opt_input($_[0]->{'value'}, "CacheRoot", $text{'mod_proxy_none'}, 20).
&file_chooser_button("CacheRoot", 0));
}
sub save_CacheRoot
{
$in{'CacheRoot_def'} || &allowed_auth_file($in{'CacheRoot'}) ||
&error($text{'mod_proxy_eunder'});
return &parse_opt("CacheRoot", '^\S+$', $text{'mod_proxy_edir'});
}
sub edit_CacheSize
{
return (1, $text{'mod_proxy_size'},
&opt_input($_[0]->{'value'}, "CacheSize", $text{'mod_proxy_default'}, 8)." kB");
}
sub save_CacheSize
{
return &parse_opt("CacheSize", '^\d+$', $text{'mod_proxy_esize'});
}
sub edit_CacheGcInterval
{
return (1, $text{'mod_proxy_garbage'},
&opt_input($_[0]->{'value'}, "CacheGcInterval", $text{'mod_proxy_nogc'}, 6).
$text{'mod_proxy_hours'});
}
sub save_CacheGcInterval
{
return &parse_opt("CacheGcInterval", '^\d+$',
$text{'mod_proxy_egarbage'});
}
sub edit_CacheMaxExpire
{
return (1, $text{'mod_proxy_maxexp'},
&opt_input($_[0]->{'value'}, "CacheMaxExpire", $text{'mod_proxy_default'}, 6).
$text{'mod_proxy_seconds'});
}
sub save_CacheMaxExpire
{
return &parse_opt("CacheMaxExpire", '^\d+$',
$text{'mod_proxy_emaxexp'});
}
sub edit_CacheLastModifiedFactor
{
return (1, $text{'mod_proxy_expfac'},
&opt_input($_[0]->{'value'}, "CacheLastModifiedFactor", $text{'mod_proxy_default'}, 6));
}
sub save_CacheLastModifiedFactor
{
return &parse_opt("CacheLastModifiedFactor", '^\d+$',
$text{'mod_proxy_eexpfac'});
}
sub edit_CacheDirLevels
{
return (1, $text{'mod_proxy_levels'},
&opt_input($_[0]->{'value'}, "CacheDirLevels", $text{'mod_proxy_default'}, 6));
}
sub save_CacheDirLevels
{
return &parse_opt("CacheDirLevels", '^\d+$',
$text{'mod_proxy_elevels'});
}
sub edit_CacheDirLength
{
return (1, $text{'mod_proxy_length'},
&opt_input($_[0]->{'value'}, "CacheDirLength", $text{'mod_proxy_default'}, 4));
}
sub save_CacheDirLength
{
return &parse_opt("CacheDirLength", '^\d+$',
$text{'mod_proxy_elength'});
}
sub edit_CacheDefaultExpire
{
return (1, $text{'mod_proxy_defexp'},
&opt_input($_[0]->{'value'}, "CacheDefaultExpire", $text{'mod_proxy_default'}, 6).
$text{'mod_proxy_seconds'});
}
sub save_CacheDefaultExpire
{
return &parse_opt("CacheDefaultExpire", '^\d+$', $text{'mod_proxy_edefexp'});
}
sub edit_CacheForceCompletion
{
return (1, $text{'mod_proxy_finish'},
&opt_input($_[0]->{'value'}, "CacheForceCompletion", $text{'mod_proxy_default'}, 6)."%");
}
sub save_CacheForceCompletion
{
return &parse_opt("CacheForceCompletion", '^\d+$',
$text{'mod_proxy_efinish'});
}
sub edit_NoCache
{
local($n, @n);
foreach $n (@{$_[0]}) { push(@n, $n->{'value'}); }
return (1, $text{'mod_proxy_nocache'},
&opt_input(@n ? join(' ', @n) : undef, "NoCache", $text{'mod_proxy_none2'}, 20));
}
sub save_NoCache
{
return &parse_opt("NoCache", '\S', $text{'mod_proxy_enocache'});
}
1;
+43
View File
@@ -0,0 +1,43 @@
do 'apache-lib.pl';
sub cgi_args
{
my ($cgi) = @_;
if ($cgi eq 'edit_global.cgi') {
# Global options page
return $access{'global'}==1 ? 'type=0' : 'none';
}
elsif ($cgi eq 'htaccess.cgi') {
return $access{'global'} ? '' : 'none';
}
elsif ($cgi eq 'edit_defines.cgi' || $cgi eq 'allmanual_form.cgi' ||
$cgi eq 'edit_mods.cgi') {
return $access{'global'}==1 ? '' : 'none';
}
else {
# Get first allowed virtual host
my $conf = &get_config();
my ($virt) = grep { &can_edit_virt($_) }
&find_directive_struct("VirtualHost", $conf);
my $vidx = &indexof($virt, @$conf);
if ($cgi eq 'virt_index.cgi') {
return 'virt='.$vidx;
}
elsif ($cgi eq 'edit_virt.cgi') {
return 'virt='.$vidx.'&type=0';
}
elsif ($cgi eq 'dir_index.cgi' || $cgi eq 'edit_dir.cgi') {
# Get first directory
my ($dir) = &find_directive_struct(
"Directory", $virt->{'members'});
return 'none' if (!$dir);
my $rv = 'virt='.$vidx.'&idx='.$didx;
if ($cgi eq 'edit_dir.cgi') {
$rv .= '&type=0';
}
return $rv;
}
}
return undef;
}
+52
View File
@@ -0,0 +1,52 @@
#!/usr/local/bin/perl
# change_dir.cgi
# Modify or delete a <Directory>, <Files> or <Location> clause
require './apache-lib.pl';
&ReadParse();
($vconf, $v) = &get_virtual_config($in{'virt'});
&can_edit_virt($v) || &error($text{'virt_ecannot'});
$d = $vconf->[$in{'idx'}];
&lock_file($d->{'file'});
&before_changing();
$conf = &get_config();
if ($in{'delete'}) {
# deleting a directive
&save_directive_struct($d, undef, $vconf, $conf);
}
else {
# changing a directive
&error_setup($text{'cdir_err2'});
$in{'path'} || &error($text{'cdir_epath'});
$in{'type'} eq 'Proxy' || $in{'type'} eq 'Location' ||
&allowed_doc_dir($in{'path'}) ||
&error($text{'cdir_ecannot'});
if ($in{'regexp'}) {
$in{'type'} eq 'Proxy' && &error($text{'cdir_eproxy'});
if ($httpd_modules{'core'} >= 1.3) {
$d->{'name'} = $in{'type'}."Match";
$d->{'value'} = "\"$in{'path'}\"";
}
else {
$d->{'name'} = $in{'type'};
$d->{'value'} = "~ \"$in{'path'}\"";
}
}
else {
$d->{'name'} = $in{'type'};
$d->{'value'} = "\"$in{'path'}\"";
}
&save_directive_struct($d, $d, $vconf, $conf, 1);
}
&flush_file_lines();
&unlock_file($d->{'file'});
&update_last_config_change();
&after_changing();
&format_config_file($d->{'file'});
&webmin_log("dir", $in{'delete'} ? 'delete' : 'save',
&virtual_name($v, 1).":".$d->{'words'}->[0], \%in);
&redirect("virt_index.cgi?virt=$in{'virt'}");
+47
View File
@@ -0,0 +1,47 @@
#!/usr/local/bin/perl
# change_files.cgi
# Modify or delete a <Files> clause in a .htaccess file
require './apache-lib.pl';
&ReadParse();
$access{'global'} || &error($text{'htaccess_ecannot'});
&allowed_auth_file($in{'file'}) ||
&error($text{'htindex_ecannot'});
$hconf = &get_htaccess_config($in{'file'});
$d = $hconf->[$in{'idx'}];
&lock_file($d->{'file'});
&before_changing();
if ($in{'delete'}) {
# deleting a directive
&save_directive_struct($d, undef, $hconf, $hconf);
}
else {
# changing a directive
if ($in{'regexp'}) {
if ($httpd_modules{'core'} >= 1.3) {
$d->{'name'} = 'FilesMatch';
$d->{'value'} = "\"$in{'path'}\"";
}
else {
$d->{'name'} = 'Files';
$d->{'value'} = "~ \"$in{'path'}\"";
}
}
else {
$d->{'name'} = 'Files';
$d->{'value'} = "\"$in{'path'}\"";
}
&save_directive_struct($d, $d, $hconf, $hconf, 1);
}
&flush_file_lines();
&unlock_file($d->{'file'});
&update_last_config_change();
&after_changing();
&format_config_file($d->{'file'});
&webmin_log("files", $in{'delete'} ? 'delete' : 'save',
"$in{'file'}:$d->{'words'}->[0]", \%in);
&redirect("htaccess_index.cgi?file=".&urlize($in{'file'}));
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+18
View File
@@ -0,0 +1,18 @@
httpd_path=/usr/local/bin/httpd
apachectl_path=/usr/local/bin/apachectl
httpd_conf=
httpd_dir=/usr/local
mime_types=
srm_conf=
access_conf=
show_list=0
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
apply_cmd=/etc/rc.d/init.d/httpd restart
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/apache
httpd_path=/usr/sbin/apache
httpd_conf=/etc/apache/httpd.conf
srm_conf=/etc/apache/srm.conf
access_conf=/etc/apache/access.conf
mime_types=/etc/apache/mime.types
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/apache
httpd_path=/usr/sbin/apache
httpd_conf=/etc/apache/httpd.conf
srm_conf=/etc/apache/srm.conf
access_conf=/etc/apache/access.conf
mime_types=/etc/apache/mime.types
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+23
View File
@@ -0,0 +1,23 @@
httpd_dir=/etc/apache2
httpd_path=/usr/sbin/apache2
httpd_conf=/etc/apache2/apache2.conf
mime_types=/etc/mime.types
start_cmd=systemctl start apache2
apply_cmd=systemctl reload apache2
stop_cmd=systemctl stop apache2
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
virt_file=/etc/apache2/sites-available
link_dir=/etc/apache2/sites-enabled
auto_mods=1
defines_file=/etc/apache2/envvars
defines_name=APACHE_ARGUMENTS
apachectl_path=/usr/sbin/apache2ctl
show_names=0
allow_virtualmin=0
format_config=1
show_list=1
+24
View File
@@ -0,0 +1,24 @@
show_list=0
httpd_dir=/etc/apache2
httpd_path=/usr/sbin/apache2
httpd_conf=/etc/apache2/apache2.conf
srm_conf=/etc/apache2/srm.conf
access_conf=/etc/apache2/access.conf
mime_types=/etc/apache2/mime.types
start_cmd=/etc/init.d/apache2 start
stop_cmd=/etc/init.d/apache2 stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
virt_file=/etc/apache2/sites-available
link_dir=/etc/apache2/sites-enabled
auto_mods=1
defines_file=/etc/apache2/envvars
apachectl_path=/usr/sbin/apache2ctl
show_names=0
apply_cmd=/usr/sbin/apache2ctl graceful
allow_virtualmin=0
format_config=1
+25
View File
@@ -0,0 +1,25 @@
show_list=0
httpd_dir=/etc/apache2
httpd_path=/usr/sbin/apache2
httpd_conf=/etc/apache2/apache2.conf
srm_conf=/etc/apache2/srm.conf
access_conf=/etc/apache2/access.conf
mime_types=/etc/apache2/mime.types
start_cmd=/etc/init.d/apache2 start
stop_cmd=/etc/init.d/apache2 stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
virt_file=/etc/apache2/sites-available
link_dir=/etc/apache2/sites-enabled
auto_mods=1
defines_file=/etc/apache2/envvars
defines_name=APACHE_ARGUMENTS
apachectl_path=/usr/sbin/apache2ctl
show_names=0
apply_cmd=/usr/sbin/apache2ctl graceful
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/usr/local
httpd_path=/usr/local/sbin/httpd
apachectl_path=/usr/local/sbin/apachectl
httpd_conf=/usr/local/etc/apache/httpd.conf
mime_types=/usr/local/etc/apache/mime.types
srm_conf=/usr/local/etc/apache/srm.conf
access_conf=/usr/local/etc/apache/access.conf
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
pid_file=/var/run/httpd.pid
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/usr/local
httpd_path=/usr/local/sbin/httpd
apachectl_path=/usr/local/sbin/apachectl
httpd_conf=/usr/local/etc/apache24/httpd.conf
mime_types=/usr/local/etc/apache24/mime.types
srm_conf=/usr/local/etc/apache24/srm.conf
access_conf=/usr/local/etc/apache24/access.conf
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
pid_file=/var/run/httpd.pid
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/usr/local
httpd_path=/usr/local/sbin/httpd
apachectl_path=/usr/local/sbin/apachectl
httpd_conf=/usr/local/etc/apache22/httpd.conf
mime_types=/usr/local/etc/apache22/mime.types
srm_conf=/usr/local/etc/apache22/srm.conf
access_conf=/usr/local/etc/apache22/access.conf
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
pid_file=/var/run/httpd.pid
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/local/apache/bin/httpd
apachectl_path=/usr/local/apache/bin/apachectl
httpd_conf=
httpd_dir=/usr/local/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_dir=/etc/apache2
httpd_path=/usr/sbin/apache2
apachectl_path=/usr/sbin/apache2ctl
start_cmd=/etc/init.d/apache2 start
stop_cmd=/etc/init.d/apache2 stop
httpd_conf=/etc/apache2/httpd.conf
mime_types=/etc/apache2/mime.types
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
defines_file=/etc/conf.d/apache2
defines_name=APACHE2_OPTS
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/local/apache/bin/httpd
apachectl_path=/usr/local/apache/bin/apachectl
httpd_conf=
httpd_dir=/usr/local/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/local/apache/bin/httpd
apachectl_path=/usr/local/apache/bin/apachectl
httpd_conf=
httpd_dir=/usr/local/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/var/sgi_apache/httpd-gateway/sbin/httpd
apachectl_path=/var/sgi_apache/httpd-gateway/sbin/apachectl
httpd_conf=
httpd_dir=/var/sgi_apache/httpd-gateway
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
httpd_path=/usr/apache/bin/httpd
stop_cmd=/usr/apache/bin/apachectl stop
httpd_conf=/usr/apache/conf/httpd.conf
start_cmd=/usr/apache/bin/apachectl start
apachectl_path=/usr/apache/bin/apachectl
httpd_dir=/usr/apache
show_order=0
mime_types=/usr/apache/conf/mime.types
show_list=0
virt_file=
srm_conf=/usr/apache/conf/srm.conf
access_conf=/usr/apache/conf/access.conf
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
httpd_path=/usr/sbin/apache
apachectl_path=/usr/sbin/apachectl
start_cmd=
httpd_dir=/Local/Library/WebServer
virt_file=
access_conf=/Local/Library/WebServer/Configuration/access.conf
srm_conf=/Local/Library/WebServer/Configuration/srm.conf
stop_cmd=
httpd_conf=/Local/Library/WebServer/Configuration/apache.conf
show_list=0
mime_types=/Local/Library/WebServer/Configuration/mime.types
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
httpd_path=/usr/sbin/httpd
apachectl_path=/usr/sbin/apachectl
start_cmd=
httpd_dir=/etc/httpd
virt_file=
access_conf=/dev/null
srm_conf=/dev/null
stop_cmd=
httpd_conf=/etc/httpd/httpd.conf
show_list=0
mime_types=/etc/httpd/mime.types
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
httpd_path=/usr/sbin/httpd
apachectl_path=/usr/sbin/apachectl
start_cmd=
httpd_dir=/etc/apache2
virt_file=
stop_cmd=
httpd_conf=/etc/apache2/httpd.conf
show_list=0
mime_types=/etc/apache2/mime.types
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=service httpd start
stop_cmd=service httpd stop
show_order=0
test_config=1
test_manual=0
test_always=0
test_apachectl=1
defines_mods=/usr/lib/apache /usr/lib/apache2 /usr/lib/apache-extramodules /usr/lib/apache2-extramodules /etc/httpd/modules
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/init.d/httpd start
stop_cmd=/etc/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/usr/pkg/etc/httpd
httpd_path=/usr/pkg/sbin/httpd
apachectl_path=/usr/pkg/sbin/apachectl
httpd_conf=/usr/pkg/etc/httpd/httpd.conf
mime_types=/usr/pkg/etc/httpd/mime.types
srm_conf=/usr/pkg/etc/httpd/srm.conf
access_conf=/usr/pkg/etc/httpd/access.conf
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+17
View File
@@ -0,0 +1,17 @@
show_list=0
httpd_dir=/etc/httpd/apache
httpd_path=/usr/sbin/httpd.apache
mime_types=/etc/mime.types
stop_cmd=/etc/rc.d/init.d/httpd stop
start_cmd=/etc/rc.d/init.d/httpd start
show_order=0
defines=AUTH_MYSQL DAV JSERV PERL PHP3 PHP4 ROAMING
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+17
View File
@@ -0,0 +1,17 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
stop_cmd=/etc/rc.d/init.d/httpd stop
start_cmd=/etc/rc.d/init.d/httpd start
show_order=0
defines=AUTH_MYSQL DAV JSERV PERL PHP3 PHP4 ROAMING
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+17
View File
@@ -0,0 +1,17 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
stop_cmd=/etc/rc.d/init.d/httpd stop
start_cmd=/etc/rc.d/init.d/httpd start
show_order=0
defines=AUTH_MYSQL DAV JSERV PERL PHP3 PHP4 ROAMING
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
stop_cmd=/etc/rc.d/init.d/httpd stop
start_cmd=/etc/rc.d/init.d/httpd start
show_order=0
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
defines=AUTH_MYSQL DAV JSERV PERL PHP3 PHP4 ROAMING
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
stop_cmd=/etc/rc.d/init.d/httpd stop
start_cmd=/etc/rc.d/init.d/httpd start
show_order=0
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
defines_file=/etc/sysconfig/daemons/httpd
defines_name=OPTIONS
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+23
View File
@@ -0,0 +1,23 @@
show_list=0
httpd_dir=/srv/www
httpd_conf=/etc/apache2/httpd.conf
mime_types=/etc/apache2/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=systemctl start apache2
stop_cmd=systemctl stop apache2
apply_cmd=systemctl reload apache2
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
apachectl_path=/usr/sbin/apache2ctl
virt_file=/etc/apache2/vhosts.d
pid_file=/run/httpd.pid
defines_file=/etc/sysconfig/apache2
defines_name=APACHE_SERVER_FLAGS
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/var/www
httpd_path=/usr/sbin/httpd
apachectl_path=/usr/sbin/apachectl
httpd_conf=/var/www/conf/httpd.conf
mime_types=/var/www/conf/mime.types
srm_conf=/var/www/conf/srm.conf
access_conf=/var/www/conf/access.conf
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/var/www/html
httpd_conf=/etc/httpd/httpd.conf
httpd_path=/usr/sbin/httpd
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_path=/usr/local/lib/apache/bin/httpd
apachectl_path=/usr/local/lib/apache/bin/apachectl
httpd_conf=/usr/local/lib/apache/conf/httpd.conf
httpd_dir=/usr/local/lib/apache
mime_types=/usr/local/lib/apache/conf/mime.types
srm_conf=
access_conf=
start_cmd=/etc/apache start
stop_cmd=/etc/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/local/apache/bin/httpd
apachectl_path=/usr/local/apache/bin/apachectl
httpd_conf=
httpd_dir=/usr/local/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/etc/apache2
httpd_path=/usr/sbin/apache2
httpd_conf=/etc/apache2/httpd.conf
apachectl_path=/usr/sbin/apachectl
virt_name=httpd.conf
virt_file=/etc/apache2/httpd.conf
start_cmd=service apache start
stop_cmd=service apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
apply_cmd=/etc/rc.d/init.d/httpd graceful
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/init.d/httpd start
apply_cmd=/etc/init.d/httpd graceful
stop_cmd=/etc/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=1
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=systemctl start httpd.service
apply_cmd=systemctl reload httpd.service
stop_cmd=systemctl stop httpd.service
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
pid_file=/run/httpd/httpd.pid
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
apachectl_path=/usr/sbin/apachectl
defines_dir=/etc/httpd/modules
defines_file=/etc/sysconfig/httpd
defines_name=OPTIONS
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
apply_cmd=/etc/rc.d/init.d/httpd restart
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
apply_cmd=/etc/rc.d/init.d/httpd restart
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
defines_dir=/etc/httpd/modules
defines_file=/etc/sysconfig/httpd
defines_name=OPTIONS
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
apply_cmd=/etc/rc.d/init.d/httpd restart
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+13
View File
@@ -0,0 +1,13 @@
show_list=0
httpd_dir=/var/lib/httpd
httpd_path=/usr/sbin/httpd
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+22
View File
@@ -0,0 +1,22 @@
max_servers=100
httpd_dir=/etc/apache
httpd_path=/usr/sbin/httpd
show_list=0
show_order=0
test_config=1
httpd_conf=/etc/apache/httpd.conf
stop_cmd=
start_cmd=
access_conf=/etc/apache/access.conf
srm_conf=/etc/apache/srm.conf
virt_file=
mime_types=
apachectl_path=/usr/sbin/apachectl
test_manual=0
test_always=0
test_apachectl=1
pid_file=/var/run/httpd/httpd.pid
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
httpd_path=/var/lib/apache/sbin/httpd
start_cmd=
apachectl_path=/var/lib/apache/sbin/apachectl
httpd_dir=/var/lib/apache
virt_file=
access_conf=
srm_conf=
stop_cmd=
httpd_conf=
mime_types=
show_order=0
show_list=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
max_servers=100
httpd_dir=/etc/apache
httpd_path=/usr/sbin/httpd
show_list=0
show_order=0
test_config=1
httpd_conf=/etc/apache/httpd.conf
stop_cmd=
start_cmd=
access_conf=/etc/apache/access.conf
srm_conf=/etc/apache/srm.conf
virt_file=
mime_types=
apachectl_path=/usr/sbin/apachectl
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=1
httpd_dir=/server/apache/
httpd_path=/server/apache/bin/httpd
mime_types=/server/apache/conf/mime.types
start_cmd=/etc/rc.d/bin/apache up
stop_cmd=/etc/rc.d/bin/apache down
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/local/apache/bin/httpd
apachectl_path=/usr/local/apache/bin/apachectl
httpd_conf=
httpd_dir=/usr/local/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/apache/bin/httpd
apachectl_path=/usr/apache/bin/apachectl
httpd_conf=/etc/apache/httpd.conf
httpd_dir=/var/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_dir=/usr/apache2/2.4
httpd_conf=/etc/apache2/2.4/httpd.conf
httpd_path=/usr/apache2/2.4/bin/httpd
apachectl_path=/usr/apache2/2.4/bin/apachectl
pid_file=/var/run/apache2/2.4/httpd.pid
start_cmd=svcadm enable svc:/network/http:apache24
stop_cmd=svcadm disable svc:/network/http:apache24
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
show_names=0
allow_virtualmin=0
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_path=/usr/apache/bin/httpd
apachectl_path=/usr/apache/bin/apachectl
httpd_conf=/etc/apache/httpd.conf
httpd_dir=/var/apache
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/usr/local/httpd
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=/sbin/init.d/apache start
stop_cmd=/sbin/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/usr/local/httpd
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_dir=/srv/www
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
apachectl_path=/usr/sbin/apachectl
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+21
View File
@@ -0,0 +1,21 @@
show_list=0
httpd_dir=/srv/www
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
apachectl_path=/usr/sbin/apachectl
virt_file=/etc/apache2/vhosts.d
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+23
View File
@@ -0,0 +1,23 @@
show_list=0
httpd_dir=/srv/www
httpd_conf=/etc/apache2/httpd.conf
mime_types=/etc/apache2/mime.types
httpd_path=/usr/sbin/httpd2-prefork
start_cmd=service apache2 start
stop_cmd=service apache2 stop
apply_cmd=service apache2 restart
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
apachectl_path=/usr/sbin/apache2ctl
virt_file=/etc/apache2/vhosts.d
pid_file=/var/run/httpd2.pid
defines_file=/etc/sysconfig/apache2
defines_name=APACHE_SERVER_FLAGS
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
allow_virtualmin=0
test_always=0
httpd_conf=/opt/etc/apache2/httpd.conf
show_names=1
show_order=0
apachectl_path=/opt/sbin/apachectl
test_apachectl=1
httpd_dir=/opt/etc/apache2
test_manual=1
auto_mods=1
pid_file=/var/run/httpd-user.pid
test_config=1
show_list=0
httpd_path=/opt/sbin/httpd
max_servers=100
format_config=1
+18
View File
@@ -0,0 +1,18 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/init.d/httpd start
apply_cmd=/etc/init.d/httpd restart
stop_cmd=/etc/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
apachectl_path=/usr/sbin/apachectl
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+16
View File
@@ -0,0 +1,16 @@
show_list=0
httpd_dir=/etc/httpd
httpd_path=/usr/sbin/httpd
mime_types=/etc/mime.types
start_cmd=/etc/rc.d/init.d/httpd start
stop_cmd=/etc/rc.d/init.d/httpd stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+19
View File
@@ -0,0 +1,19 @@
show_list=0
httpd_dir=/srv/www
httpd_conf=/etc/httpd/httpd.conf
srm_conf=/etc/httpd/srm.conf
access_conf=/etc/httpd/access.conf
mime_types=/etc/httpd/mime.types
httpd_path=/usr/sbin/httpd
start_cmd=/etc/init.d/apache start
stop_cmd=/etc/init.d/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_path=/usr/local/lib/apache/bin/httpd
apachectl_path=/usr/local/lib/apache/bin/apachectl
httpd_conf=/usr/local/lib/apache/conf/httpd.conf
httpd_dir=/usr/local/lib/apache
mime_types=/usr/local/lib/apache/conf/mime.types
srm_conf=
access_conf=
start_cmd=/etc/apache start
stop_cmd=/etc/apache stop
show_order=0
max_servers=100
test_config=1
test_manual=0
test_always=0
test_apachectl=1
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+20
View File
@@ -0,0 +1,20 @@
show_list=0
httpd_path=c:/program files/apache group/apache2/bin/Apache.exe
httpd_conf=
httpd_dir=c:/program files/apache group/apache2
mime_types=
srm_conf=
access_conf=
show_order=0
max_servers=100
test_config=0
test_manual=0
test_always=0
test_apachectl=0
start_cmd=net start apache2
stop_cmd=net stop apache2
#apply_cmd="c:/program files/apache group/apache2/bin/Apache.exe" -k restart
auto_mods=1
show_names=0
allow_virtualmin=0
format_config=1
+34
View File
@@ -0,0 +1,34 @@
line1=Configurable options,11
show_list=Display virtual servers as,1,0-Icons,1-List
show_order=Order virtual servers by,1,0-Order in config files,1-Server name,2-IP Address
max_servers=Maximum number of servers to display,0,5
virt_file=File or directory to add virtual servers to,3,httpd.conf
virt_name=Filename pattern for virtual servers,3,Default ($DOM.conf)
link_dir=Directory to create links in for new virtual servers,3,None
format_config=Format indents for config file when editing manually?,1,1-Yes,0-No
test_config=Test config file before applying changes?,1,1-Yes,0-No
test_manual=Test config file after manual changes?,1,1-Yes,0-No
test_always=Test config file after other changes?,1,1-Yes,0-No
test_apachectl=Test configuration with command,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> with <tt>-D</tt> options
show_names=Show Apache directive names?,1,1-Yes,0-No
apache_docbase=Base directory for Apache documentation,3,Apache website
auto_mods=Always detect Apache modules automatically?,1,1-Yes,0-No
allow_virtualmin=Allow editing of domains managed by Virtualmin?,1,1-Yes,0-No
line2=System configuration,11
httpd_dir=Apache server root directory,0
httpd_path=Path to httpd executable,0
httpd_version=Apache version,3,Work out automatically
apachectl_path=Path to the apachectl command,3,None
start_cmd=Command to start apache,3,Use apachectl or start manually
stop_cmd=Command to stop apache,3,Use apachectl or kill process
apply_cmd=Command to apply configuration,10,-Use apachectl or HUP signal,restart-Run stop and start commands
graceful_cmd=Command to re-read configuration,3,Same as apply command
httpd_conf=Path to httpd.conf or apache2.conf,3,Automatic
srm_conf=Path to srm.conf,3,Automatic
access_conf=Path to access.conf,3,Automatic
mime_types=Path to mime.types,3,Automatic
pid_file=Path to Apache PID file,3,Work out automatically
line3=Apache variables,11
defines_file=Environment file defining Apache variables,3,None
defines_name=Environment variable name in above file,0
defines_mods=Directories containing modules for HAVE_ variables,9,40,3,\t
+33
View File
@@ -0,0 +1,33 @@
line1=Конфигурационни опции,11
show_list=Показвай виртуалните сървъри като,1,0-Икони,1-Списък
show_order=Подреждай виртуалните сървъри по,1,0-Ред в конфигурационните файлове,1-Име на сървър,2-IP адрес
max_servers=Максимален брой сървъри за показване 0,5
virt_file=Файл в който се добавят виртуалните сървъри,3,httpd.conf
virt_name=Път на имената на фаилове за виртуалните сървъри,3,Подразбиране ($DOM.conf)
link_dir=Директория засъздаване на връзки в новите виртални сървъри,3,Няма
test_config=Проверка на конфигурационен файл преди влизане на промените в сила?,1,1-Да,0-Не
test_manual=Проверка на конфигурационен файл след ръчна промяна?,1,1-Да,0-Не
test_always=Изпитай конфигурационния файл след други промени?,1,1-Да,0-Не
test_apachectl=Изпитаване на конфигурацията с команда,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> with <tt>-D</tt> options
show_names=Показвай имената на Apache директивите,1,1-Да,0-Не
apache_docbase=Базова директория за документацията на Apache,3,Уеб страница на Apache
auto_mods=Винаги да намира Апачи модулите автоматично?,1,1-Да,0-Не
allow_virtualmin=Позволяване на редактиране на домейни&#44; управлявани от Virtualmin?,1,1-Да,0-Не
line2=Системна конфигурация,11
httpd_dir=Коренова иректория за Apache сървър,0
httpd_path=Път към httpd изпълним файл,0
httpd_version=Apache версия,3,Извлечи автоматично
apachectl_path=Път към командата apachectl,3,Няма
start_cmd=Команда за стартиране на apache,3,Автоматично
stop_cmd=Команда за спиране на apache,3,Автоматично
apply_cmd=Команда за подържане на конфиурацията,10,-Използвай apachectl или HUP сигнал,рестарт-Рън стоп и старт команди
graceful_cmd=Команда за препрочитане на конфигурация,3,Също като поддържаната команда
httpd_conf=Път към httpd.conf,3,Автоматично
srm_conf=Път към srm.conf,3,Автоматично
access_conf=Път към access.conf,3,Автоматично
mime_types=Път към mime.types,3,Автоматично
pid_file=Път към Апачи PID файл,3,изхвърли автоматично
line3=Апачи променливи,11
defines_file=Файловото обкръжение определя Апачи променливи,3,Без
defines_name=Обкръжението на имената на променливите в по-горния файл,0
defines_mods=Директориите съдържат модули за HAVE_ variables,9,40,3,\t
+33
View File
@@ -0,0 +1,33 @@
line1=Opcions configurables,11
show_list=Mostra els servidors virtuals com,1,0-Icones,1-Llista
show_order=Ordena els servidors virtuals per,1,0-Ordre dels fitxers de configuració,1-Nom de servidor,2-Adreça IP
max_servers=Nombre màxim de servidors a mostrar,0,5
virt_file=Fitxer o directori on s'afegeixen els servidors virtuals,3,httpd.conf
virt_name=Patró de nom de fitxer per als servidors virtuals,3,Defecte ($DOM.conf)
link_dir=Directori per crear-hi enllaços per als nous servidors virtuals,3,Cap
test_config=Comprova el fitxer de configuració abans d'aplicar els canvis,1,1-Sí,0-No
test_manual=Comprova el fitxer de configuració després de fer canvis manuals,1,1-Sí,0-No
test_always=Comprova el fitxer de configuració després d'altres canvis,1,1-Sí,0-No
test_apachectl=Prova la configuració amb l'ordre,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> amb l'opció <tt>-D</tt>
show_names=Mostra els noms de directives Apache,1,1-Sí,0-No
apache_docbase=Directori base de la documentació d'Apache,3,Web d'Apache
auto_mods=Detecta els mòduls Apache automàticament,1,1-Sí,0-No
allow_virtualmin=Permet l'edició de dominis gestionats per Virtualmin,1,1-Sí,0-No
line2=Configuració del sistema,11
httpd_dir=Directori arrel del servidor Apache,0
httpd_path=Camí de l'executable httpd,0
httpd_version=Versió Apache,3,Detecta-la automàticament
apachectl_path=Camí de l'ordre apachectl,3,Cap
start_cmd=Ordre per iniciar Apache,3,Utilitza apachectl o inicia manualment
stop_cmd=Ordre per aturar Apache,3,Utilitza apachectl o mata el procés
apply_cmd=Ordre per aplicar la configuració,10,-Utilitza apachectl o senyal HUP,restart-Executa les ordres d'inici i aturada
graceful_cmd=Ordre per rellegir la configuració,3,La mateixa que per aplicar-la
httpd_conf=Camí de httpd.conf o apache2.conf,3,Automàtic
srm_conf=Camí de srm.conf,3,Automàtic
access_conf=Camí de access.conf,3,Automàtic
mime_types=Camí de mime.types,3,Automàtic
pid_file=Camí del fitxer de PID d'Apache,3,Determina'l automàticament
line3=Variables d'Apache,11
defines_file=Fitxer d'entorn que defineix les variables d'Apache,3,Cap
defines_name=Nom de la variable d'entorn al fitxer anterior,0
defines_mods=Directoris que contenen els mòduls per a les variables HAVE_,9,40,3,\t
+32
View File
@@ -0,0 +1,32 @@
line1=Možnosti konfigurace,11
show_list=Zobrazit virtuální servery jako,1,0-ikony,1-seznam
show_order=Seřadit virtuální servery podle,1,0-pořadí v konfiguračních souborech,1-názvu serveru,2-IP adresy
max_servers=Maximální počet sobrazených serverů,0,5
virt_file=Virtuální servery se přidají do souboru,3,httpd.conf
virt_name=Název předlohy pro virtuální servery,3,Výchozí ($DOM.conf)
link_dir=Adresář pro vytvoření linků určených pro nové virtuální servery,3,Nic
test_config=Otestovat konfigurační soubor před zápisem změn?,1,1-Ano,0-Ne
test_manual=Vyzkoušet konfigurační soubor po ručních úpravách?,1,1-Ano,0-Ne
test_always=Vyzkoušet konfigurační soubor před dalšími změnami?,1,1-Ano,0-Ne
test_apachectl=Vyzkoušet konfiguraci pomocí příkazu,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> s volbou <tt>-D</tt>
show_names=Ukázat názvy Apache direktiv?,1,1-ano,0-ne
apache_docbase=Adresář s dokumentací Apache,3,Apache website
auto_mods=Detekovat Apache moduly vždy automaticky?,1,1-Ano,0-Ne
line2=Konfigurace systému,11
httpd_dir=Kořenový adresář Apache serveru,0
httpd_path=Cesta ke spuštění httpd,0
httpd_version=Verze Apache,3,Automatizovaná práce
apachectl_path=Cesta k apachectl příkazu,3,Nic
start_cmd=Příkaz pro spuštění Apache,3,Automaticky
stop_cmd=Příkaz pro ukončení Apache,3,Automaticky
apply_cmd=Příkaz upravující konfiguraci,10,-Použít apachectl nebo HUP signal,restart-Spustit stop a start příkazy
graceful_cmd=Příkaz pro znovunačtení konfigurace,3,Stejný jako příkaz pro uplatnění
httpd_conf=Cesta k httpd.conf,3,Automaticky
srm_conf=Cesta k srm.conf,3,Automaticky
access_conf=Cesta k access.conf,3,Automaticky
mime_types=Cesta k mime.types,3,Automaticky
pid_file=Cesta k souboru PID Apache,3,Určuje se automaticky
line3=Proměnné Apache,11
defines_file=Soubor pro definici proměnných prostředí Apache,3,Nic
defines_name=Název proměnné prostředí u výše uvedené souboru,0
defines_mods=Adresáře obsahující moduly pro proměnné HAVE_,9,40,3,\t
+7
View File
@@ -0,0 +1,7 @@
apache_docbase=Basemappe for Apache dokumentation,3,Apache website
apachectl_path=Sti til apachectl kommandoen,3,Ingen
apply_cmd=Kommando til at anvende konfiguration,10,-Brug spachectl eller HUP signal,genstart-Kør stop og start kommandoer
access_conf=Sti til access.conf,3,Automatisk
defines_file=Omgivelsesfil der definere Apache variabler,3,Ingen
defines_name=Omgivelsesvariablenavn i filen ovenfor,0
defines_mods=Mapper der indeholder moduler for HAVE_ variabler,9,40,3,\t
+33
View File
@@ -0,0 +1,33 @@
line1=Konfigurierbare Optionen,11
show_list=Zeige virtuelle Server als,1,0-Icons,1-Liste
show_order=Sortiere virtuelle Server nach,1,0-Reihenfolge in Konfigurationsdatei(en),1-Servername,2-IP&#45;Adresse
max_servers=Maximal anzuzeigende Server,0,5
virt_file=Datei&#44; der virtuelle Server hinzugefügt werden sollen,3,httpd.conf
virt_name=Dateinamensraum für Virtuelle Server,3,Standard ($DOM.conf)
link_dir=Verzeichnis für Links zu neuen virtuellen Servern,3,Keine
test_config=Teste Konfigurationsdatei bevor die Änderungen angewendet werden?,1,1-Ja,0-Nein
test_manual=Teste Konfigurationsdatei nach manuellen Änderungen?,1,1-Ja,0-Nein
test_always=Teste Konfigurationsdatei nach anderen Änderungen?,1,1-Ja,0-Nein
test_apachectl=Teste Konfiguration mit dem Befehl,1,1-<tt>apachectl Konfigurationstest</tt>,0-<tt>HTTPD</tt> mit der Option <tt>-D</tt>
show_names=Zeige Namen der Apachedirektiven?,1,1-Ja,0-Nein
apache_docbase=Basisverzeichnis für Apache Dokumentation,3,Apache&#45;Webseite
auto_mods=Apachemodule immer automatisch erkennen?,1,1-Ja,0-Nein
allow_virtualmin=Erlaube Bearbeiten von Domainen durch Virtualmin?,1,1-Ja,0-Nein
line2=Systemkonfiguration,11
httpd_dir=Apache Hauptwurzelverzeichnis,0
httpd_path=Voller Pfad zum Apache&#45;Binary httpd,0
httpd_version=Apache&#45;Version,3,Automatisch herausfinden
apachectl_path=Voller Pfad zum apachectl&#45;Befehl,3,Keiner
start_cmd=Befehl zum Start von Apache,3,Benutze apachectl oder starte manuell
stop_cmd=Befehl zum Stoppen von Apache,3,Benutze apachectl oder töte den Prozess
apply_cmd=Befehl zum Anwenden der Konfiguration,10,-Benutze apachectl oder HUP&#45;Signal,Neustart-Führe Stopp und Start Befehl aus
graceful_cmd=Befehl um die Konfiguration neu einzulesen,3,Gleich dem Anwenden&#45;Befehl
httpd_conf=Voller Pfad zur httpd.conf oder apache2.conf,3,Automatisch
srm_conf=Voller Pfad zur srm.conf,3,Automatisch
access_conf=Voller Pfad zur access.conf,3,Automatisch
mime_types=Voller Pfad zur mime.types&#45;Datei,3,Automatisch
pid_file=Voller Pfad zur Apache&#45;PID&#45;Datei,3,Automatisch herausfinden
line3=Apachevariablen,11
defines_file=Umgebungsdatei für Apachevariablen,3,Keine
defines_name=Umgebungsvariablenname in obiger Datei,0
defines_mods=Verzeichnis&#44; welches Module für HAVE_ Variablen hat,9,40,3,\t
+26
View File
@@ -0,0 +1,26 @@
line1=Opciones configurables,11
show_list=Mostrar servidores virtuales como,1,0-Iconos,1-Lista
show_order=Ordenar servidores virtuales por,1,0-Orden en archivos de configuración,1-Nombre de servidor,2-Dirección IP
max_servers=Máximo número de servidores a mostrar,0,5
virt_file=Archivo o directorio al que añadir servidores virtuales,3,httpd.conf
virt_name=Esquema de nombre de archivo para servidores virtuales,3,Por defecto ($DOM.conf)
test_config=¿Testear archivo de configuración antes de aplicar los cambios?,1,1-,0-No
test_manual=¿Testear archivo de configuración tras cambios manuales?,1,1-,0-No
test_always=¿Testear el archivo de configuración tras otros cambios?,1,1-,0-No
test_apachectl=Testear configuración con el comando,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> con opciones <tt>-D</tt>
show_names=Mostrar nombres de directiva de Apache,1,1-,0-No
apache_docbase=Directorio base para la documentación Apache,3,Web de Apache
line2=Configuración del sistema,11
httpd_dir=Directorio raíz de servidor Apache,0
httpd_path=Trayectoria a ejecutable httpd,0
httpd_version=Versión de Apache,3,Funcionar automáticamente
apachectl_path=Trayectoria a comando apachectl,3,Ninguna
start_cmd=Comando para arrancar apache,3,Utilizar apachectl o comenzar manualmente
stop_cmd=Comando para parar apache,3,Usar apachectl o matar proceso
apply_cmd=Comando para aplicar configuración,3,Utilizar apachectl o señal HUP
graceful_cmd=Comando para releer configuración,3,El mismo que el comando aplicar
httpd_conf=Trayectoria a httpd.conf,3,Automática
srm_conf=Trayectoria a srm.conf,3,Automática
access_conf=Trayectoria a access.conf,3,Automática
mime_types=Trayectoria a mime.types,3,Automática
pid_file=Trayectoria al archivo PID de Apache,3,Averiguarlo automáticamente
+25
View File
@@ -0,0 +1,25 @@
line1=گزينه‌هاي قابل پيکربندي,11
show_list=نمايش دادن کارساز‌هاي مجازي به‌صورت,1,0-شمايل,1-ليست
show_order=مرتب کردن کارساز‌هاي مجازي براساس,1,0-ترتيب در پرونده‌هاي پيکربندي,1-نام کارساز,2-نشاني IP
max_servers=بيشينه تعداد کارساز‌ها جهت نمايش دادن,0,5
virt_file=پرونده يا فهرست راهنما جهت اضافه شدن کارساز‌هاي مجازي به آن,3,http.conf
virt_name=نقاب نام پرونده براي کارساز‌هاي مجازي,3,پيش‌گزيده ($DOM.conf)
test_config=آيا پرونده پيکربندي قبل از به‌کاربستن تغييرات آزمايش شود؟,1,1-بله,0-خير
test_manual=آيا پرونده پيکربندي بعد از انجام تغييرات دستي آزمايش شود؟,1,1-بله,0-خير
test_always=آيا پرونده پيکربندي بعد از ديگر تغييرات آزمايش شود؟,1,1-بله,0-خير
test_apachectl=آزمايش پيکربندي با فرمان,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> و گزينه <tt>-D</tt>
show_names=آيا نام رهنمودهاي آپاچي نمايش داده شود؟,1,1-بله,0-خير
apache_docbase=فهرست راهنماي پايه براي مستندات آپاچي,3,وبگاه آپاچي
line2=پيکربندي سيستم,11
httpd_dir=فهرست راهنماي ريشه کارساز آپاچي,0
httpd_path=مسيرhttpd اجرايي,0
httpd_version=نسخه آپاچي,3,به‌طور خودکار تعيين شود
apachectl_path=مسير فرمانapachectl,3,هيچ
start_cmd=فرماني جهت آغازکردن آپاچي,3,ازapachectl استفاده شود و يا به‌طور دستي آغاز شود.
stop_cmd=فرماني جهت متوقف کردن آپاچي,3,ازapachectl استفاده شود و يا پردازش متوقف شود.
apply_cmd=فرماني جهت به کاربستن پيکربندي,3,ازapachectl و يا سيگنال HUPاستفاده شود
httpd_conf=مسير httpd.conf,3,خودکار
srm_conf=مسير srm.conf,3,خودکار
access_conf=مسيرaccess.conf,3,خودکار
mime_types=مسيرmime.types,3,خودکار
pid_file=مسير پروندهPID آپاچي,3,به‌طور خودکار تعيين شود
+33
View File
@@ -0,0 +1,33 @@
line1=Options configurables,11
show_list=Afficher les serveurs virtuels comme,1,0-Icônes,1-Liste
show_order=Commander les serveurs virtuels par,1,0-Ordre dans les fichiers de configuration,1-Nom du serveur,2-Adresse IP
max_servers=Nombre maximum de serveurs à afficher,0,5
virt_file=Fichier ou répertoire auquel ajouter des serveurs virtuels,3,httpd.conf
virt_name=Modèle de nom de fichier pour les serveurs virtuels,3,Défaut ($DOM.conf)
link_dir=Répertoire dans lequel créer des liens pour les nouveaux serveurs virtuels,3,Aucun
test_config=Tester le fichier de configuration avant d'appliquer les modifications?,1,1-Oui,0-Non
test_manual=Tester le fichier de configuration après des modifications manuelles?,1,1-Oui,0-Non
test_always=Tester le fichier de configuration après d'autres modifications?,1,1-Oui,0-Non
test_apachectl=Tester la configuration avec la commande,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> avec <tt>-D</tt> options
show_names=Afficher les noms des directives Apache?,1,1-Oui,0-Non
apache_docbase=Répertoire de base pour la documentation Apache,3,Site Web Apache
auto_mods=Toujours détecter automatiquement les modules Apache?,1,1-Oui,0-Non
allow_virtualmin=Autoriser la modification des domaines gérés par Virtualmin?,1,1-Oui,0-Non
line2=Configuration du système,11
httpd_dir=Répertoire racine du serveur Apache,0
httpd_path=Chemin vers l'exécutable httpd,0
httpd_version=Version Apache,3,Mettre au point automatiquement
apachectl_path=Chemin vers la commande apachectl,3,Aucun
start_cmd=Commande pour démarrer Apache,3,Utilisez apachectl ou démarrez manuellement
stop_cmd=Commande pour arrêter Apache,3,Utilisez apachectl ou tuer le processus
apply_cmd=Commande pour appliquer la configuration,10,-Utiliser le signal apachectl ou HUP,restart-Exécuter les commandes d'arrêt et de démarrage
graceful_cmd=Commande pour relire la configuration,3,Identique à la commande Apply
httpd_conf=Chemin vers httpd.conf ou apache2.conf,3,Automatique
srm_conf=Chemin vers srm.conf,3,Automatique
access_conf=Chemin d'accès à access.conf,3,Automatique
mime_types=Chemin vers mime.types,3,Automatique
pid_file=Chemin vers le fichier PID Apache,3,Mettre au point automatiquement
line3=Variables Apache,11
defines_file=Fichier d'environnement définissant les variables Apache,3,Aucun
defines_name=Nom de la variable d'environnement dans le fichier ci-dessus,0
defines_mods=Répertoires contenant des modules pour les variables HAVE_,9,40,3,\t
View File
+12
View File
@@ -0,0 +1,12 @@
show_list=Virtuális kiszolgák megjelenítése mint,1,0-Ikon,1-Lista
show_order=Virtuális kiszolgálók rendszerezése,1,0-A konfigurációs fájlok sorrendje szerint,1-Kiszolgáló neve alapján,2-IP-cím alapján
virt_file=Virtuális kiszolgálók hozzáadása az alábbi fájlhoz,3,httpd.conf
httpd_dir=Apache kiszolgáló gyökérkönyvtár,0
httpd_path=Útvonal a futtatható httpd-hez,0
apachectl_path=Útvonal az apachectl parancshoz,3,Nincs
start_cmd=Parancs az apache elindításához,3,Automatikus
stop_cmd=Parancs az apache megállításához,3,Automatikus
httpd_conf=Útvonal a httpd.conf-hoz,3,Automatikus
srm_conf=Útvonal az srm.conf-hoz,3,Automatikus
access_conf=Útvonal az access.conf-hoz,3,Automatikus
mime_types=Útvonal az mime.types-hoz,3,Automatikus
+32
View File
@@ -0,0 +1,32 @@
line1=設定可能なオプション,11
show_list=仮想サーバの表示方法,1,0-アイコン,1-リスト
show_order=仮想サーバの並び順,1,0-設定ファイル順,1-サーバ名,2-IPアドレス
max_servers=表示するサーバの最大数,0,5
virt_file=仮想サーバを追加するファイル,3,httpd.conf
virt_name=仮想サーバのファイル名パターン,3,デフォルト ($DOM.conf)
link_dir=新しい仮想サーバを作成するディレクトリ,3,なし
test_config=設定を適用する前に設定ファイルをテストしますか,1,1-はい,0-いいえ
test_manual=手動で設定ファイルを変更した後に設定ファイルをテストしますか?,1,1-はい,0-いいえ
test_always=設定ファイルの変更後に設定のテストをしますか?,1,1-はい,0-いいえ
test_apachectl=設定のテストコマンド,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt>を<tt>-D</tt>オプション付きで
show_names=Apacheディレクティブ名を表示する,1,1-はい,0-いいえ
apache_docbase=Apacheドキュメントのベースディレクトリ,3,Apacheウェブサイト
auto_mods=Apacheモジュールを常に自動判定しますか,1,1-はい,0-いいえ
line2=システム設定,11
httpd_dir=Apacheサーバのルートディレクトリ,0
httpd_path=httpdの実行可能ファイルのパス,0
httpd_version=Apacheのバージョン,3,自動
apachectl_path=apachectlコマンドのパス,3,なし
start_cmd=apacheを起動するためのコマンド,3,自動
stop_cmd=apacheを停止するためのコマンド,3,自動
apply_cmd=設定を適用するコマンド,3,apachectl又はHUPシグナル
graceful_cmd=設定を読み直すコマンド,3,設定を適用するコマンドと同じ
httpd_conf=httpd.confのパス,3,自動
srm_conf=srm.confのパス,3,自動
access_conf=access.confのパス,3,自動
mime_types=mime.typesのパス,3,自動
pid_file=ApacheのPIDファイルへのパス,3,自動
line3=Apache 変数,11
defines_file=Apache変数が設定されている環境ファイル,3,なし
defines_name=上記のファイルの環境変数名,0
defines_mods=HAVE_ 変数のためのモジュールを含むディレクトリ,9,40,3,\t
+33
View File
@@ -0,0 +1,33 @@
line1=Pilihan dikonfigurasikan,11
show_list=Paparkan pelayan maya sebagai,1,0-Ikon,1-Senarai
show_order=Urutan pelayan maya dengan,1,0-Urutan dalam fail config,1-Nama pelayan,2-Alamat IP
max_servers=Bilangan maksimum pelayan untuk dipaparkan,0,5
virt_file=Fail atau direktori untuk menambah pelayan maya,3,httpd.conf
virt_name=Corak nama fail bagi pelayan maya,3,Lalai ($ DOM.conf)
link_dir=Direktori untuk mewujudkan pautan dalam pelayan maya yang baharu,3,Tiada
test_config=Uji fail config sebelum menerapkan perubahan?,1,1-Ya,0-Tidak
test_manual=Uji fail config selepas perubahan secara manual?,1,1-Ya,0-Tidak
test_always=Uji fail config selepas perubahan yang lain?,1,1-Ya,0-Tidak
test_apachectl=Uji konfigurasi dengan arahan,1, -<tt>apachectl configtest</tt>,0-<tt>httpd</tt> dengan opsyen <tt>-D</tt>
show_names=Menunjukkan nama arahan Apache?,1,1-Ya,0-Tidak
apache_docbase=Direktori Asas untuk dokumentasi Apache,3,Laman web Apache
auto_mods=Sentiasa mengesan modul Apache secara automatik?,1,1-Ya,0-Tidak
allow_virtualmin=Benarkan penyuntingan domain yang diuruskan oleh Virtualmin?,1,1-Ya,0-Tidak
line2=Konfigurasi sistem,11
httpd_dir=Direktori utama Apache, 0
httpd_path=Lokasi untuk program httpd,0
httpd_version=Versi Apache,3,Dapatkan secara automatik
apachectl_path=Lokasi arahan apachectl,3,Tiada
start_cmd=Arahan untuk memulakan apache,3,Guna apachectl atau mulakan secara manual
stop_cmd=Arahan untuk menghentikan apache,3,Gunakan apachectl atau matikan proses
apply_cmd=Arahan untuk menerapkan konfigurasi,10,-Gunakan apachectl atau isyarat HUP&#44; mulakan semula arahan stop dan start
graceful_cmd=Perintah untuk dibaca semula konfigurasi,3,Sama seperti perintah terapan
httpd_conf=Lokasi httpd.conf atau apache2.conf,3,automatik
srm_conf=Lokasi untuk srm.conf,3,Automatik
access_conf=Lokasi access.conf,3,Automatik
mime_types=Lokasi untuk mime.types,3,Automatik
pid_file=Lokasi untuk fail PID Apache,3,Dapatkan secara automatik
line3=Pembolehubah Apache,11
defines_file=Fail persekitaran yang menentukan pembolehubah Apache,3,Tiada
defines_name=Nama pembolehubah persekitaran dalam fail diatas,0
defines_mods=Direktori yang mengandungi modul bagi pembolehubah HAVE_, 9,40,3,\ t
+32
View File
@@ -0,0 +1,32 @@
line1=Configureerbare opties,11
show_list=Geef virtuele servers weer als,1,0-Iconen,1-Lijst
show_order=Sorteer virtuele servers op,1,0-Volgorde in configuratie bestand,1-Server naam,2-IP Adres
max_servers=Maximum aantal servers om te tonen,0,5
virt_file=Bestand om virtuele servers aan toe te voegen,3,httpd.conf
virt_name=Filenaam patroon voor virtuele servers,3,Standaard ($DOM.conf)
link_dir=Directory om links in te maken voor nieuwe virtuele servers,3,Geen
test_config=Test de config file voordat veranderingen worden toegevoegd?,1,1-Ja,0-Nee
test_manual=Test de config file na handmatige veranderingen?,1,1-Ja,0-Nee
test_always=Test de config file na andere veranderingen?,1,1-Ja,0-Nee
test_apachectl=Test de configuratie met de opdracht,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> met <tt>-D</tt>
show_names=Laat Apache richtlijn namen zien?,1,1-Ja,0-Nee
apache_docbase=Basis directory voor Apache documentatie,3,Apache website
auto_mods=Altijd Apache modules automatisch detecteren?,1,1-Ja,0-Nee
line2=Systeem configuratie,11
httpd_dir=Apache server hoofd directory,0
httpd_path=Pad naar httpd programma,0
httpd_version=Apache versie,3,Automatisch uitwerken
apachectl_path=Pad naar de apachectl opdracht,3,Geen
start_cmd=Opdracht om apache te starten,3,Automatisch
stop_cmd=Opdracht om apache te stoppen,3,Automatisch
apply_cmd=Opdracht om configuratie toe te voegen,10,-Gebruik apachectl of HUP signal,restart-Uitvoeren van stop en start opdrachten
graceful_cmd=Opdracht om de configuratie opnieuw te lezen,3,Zelfde als toevoeg opdracht
httpd_conf=Pad naar httpd.conf,3,Automatisch
srm_conf=Pad naar srm.conf,3,Automatisch
access_conf=Pad naar access.conf,3,Automatisch
mime_types=Pad naar mime.types,3,Automatisch
pid_file=Pad naar de Apache PID file,3,Automatisch uitwerken
line3=Apache variabelen,11
defines_file=Omgeving's file definieert Apache variabelen,3,Geen
defines_name=Omgeving variabelen naam in bovenstaande file,0
defines_mods=Directory's die de modules bevatten voor HAVE_ variables,9,40,3,\t
+33
View File
@@ -0,0 +1,33 @@
line1=Konfigurerbare innstillinger,11
show_list=Vis virtuelle servere som,1,0-Ikoner,1-Liste
show_order=Sorter virtuelle tjenere etter,1,0-Plassering i konfig.filer,1-Tjener navn,2-IP adresse
max_servers=Maks. antall tjenere som skal vises,0,5
virt_file=Fil eller katalog som virtuelle servere skal legges til',3,httpd.conf
virt_name=Filnavn mønster for virtuelle tjenere,3,Standard ($DOM.conf)
link_dir=Katalog hvor lenker for nye virtuelle tjenere opprettes,3,Ingen
test_config=Test konfig.fil før endringer tas i bruk,1,1-Ja,0-Nei
test_manual=Test konfig.fil etter manuelle endringer?,1,1-Ja,0-Nei
test_always=Test konfig.fil etter andre endringer?,1,1-Ja,0-Nei
test_apachectl=Test konfigurasjon med kommando,1,1-<tt>apachectl configtest</tt>,0-<tt>httpd</tt> med <tt>-D</tt> alternativer
show_names=Vis Apache direktiv-navn?,1,1-Ja,0-Nei
apache_docbase=Hovedkatalog for Apache dokumentasjon,3,Apache nettsted
auto_mods=Oppdag alltid Apache moduler automatisk?,1,1-Ja,0-Nei
allow_virtualmin=Tillat redigering av domener administrert av Virtualmin,1,1-Ja,0-Nei
line2=Systemkonfigurasjon,11
httpd_dir=Apache tjener rot-katalog,0
httpd_path=Sti til httpd programfil,0
httpd_version=Apache versjon,3,Finn ut automatisk
apachectl_path=Sti til apachectl kommando,3,Ingen
start_cmd=Kommando for å starte Apache,3,Bruk apachectl eller start manuelt
stop_cmd=Kommando for å stoppe Apache,3,Bruk apachectl eller stopp prosess
apply_cmd=Kommando for å ta i bruk konfigurasjon,10,-Bruk apachectl eller HUP signal,restart-Kjør stopp og start kommandoer
graceful_cmd=Kommando for å lese inn konfigurasjon på nytt,3,Samme som Bruk kommando
httpd_conf=Sti til httpd.conf eller apache.conf,3,Automatisk
srm_conf=Sti til srm.conf,3,Automatisk
access_conf=Sti til access.conf,3,Automatisk
mime_types=Sti til mime.types,3,Automatisk
pid_file=Sti til Apache PID fil,3,Finn ut automatisk
line3=Apache variabler,11
defines_file=Miljø-fil som definerer Apache variabler,3,Ingen
defines_name=Miljøvariable navn i ovenstående fil,0
defines_mods=Kataloger som inneholder moduler for HAVE_ variabler,9,40,3,\t

Some files were not shown because too many files have changed in this diff Show More