Skip to content

Commit

Permalink
---- Version 0.3.1.1 from 2011-06-22 ----
Browse files Browse the repository at this point in the history
 * Consolidate README files
 * Start on showing vhosts
  • Loading branch information
Matt Lewandowsky authored and Matt Lewandowsky committed Jun 22, 2011
1 parent 643e06f commit 4c07de4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---- Version 0.3.1.1 from 2011-06-22 ----
* Consolidate README files
* Start on showing vhosts

---- Version 0.3.1 from 2011-06-02 ----
* Update documentation for clarity/typos
* Update documentation to update attribution
Expand Down
8 changes: 5 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
= Nginx Plugin for Virtualmin/Webmin == Enable add/remove/disable sites in
Nginx configuration === Author: Matt Lewandowsky <matt@greenviolet.net> ===
Version: 0.3.1
= Nginx Plugin for Virtualmin/Webmin
== Enable add/remove/disable sites in Nginx configuration
=== Author: Matt Lewandowsky <matt@greenviolet.net>
=== Version: 0.3.2

This is a fork of nginx-webmin plugin from https://github.com/vixh/nginx-webmin
with new features.
Expand Down Expand Up @@ -47,3 +48,4 @@ an IP address.
' End:
' vi: set sw=2 ts=2 tw=78 et ai
' :indentSize=2:tabSize=2:noTabs=true:

9 changes: 0 additions & 9 deletions README.rdoc

This file was deleted.

9 changes: 9 additions & 0 deletions views/existing-hosts.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
use File::Find;

print "<select name=\"file\">";
find sub {print "<option>". $File::Find::name . "</option>\n"}, $config{'conf_dir'}."/".$config{'sites_available_dir'}.".conf";
print "</select>";
print &ui_form_start("allmanual_save.cgi", "form-data");
$data = &read_file_contents($config{'conf_dir'} . "/nginx.conf");
print &ui_textarea("data", $data, 20, 80, undef, undef,
"style='width:100%'"),"<br>\n";

0 comments on commit 4c07de4

Please sign in to comment.