Paths
authorNico Kaiser <nico@kaiser.me>
Tue, 18 Jun 2013 13:53:20 +0000 (15:53 +0200)
committerNico Kaiser <nico.kaiser@boerse-go.de>
Tue, 18 Jun 2013 13:53:20 +0000 (15:53 +0200)
conf/bind/Dyndns.conf.include
web/config.php [moved from htdocs/config.php with 100% similarity]
web/index.php [moved from htdocs/index.php with 72% similarity]
web/lib/Dyndns/Helper.php [moved from htdocs/Dyndns/Helper.php with 100% similarity]
web/lib/Dyndns/Hosts.php [moved from htdocs/Dyndns/Hosts.php with 100% similarity]
web/lib/Dyndns/Server.php [moved from htdocs/Dyndns/Server.php with 100% similarity]
web/lib/Dyndns/Users.php [moved from htdocs/Dyndns/Users.php with 100% similarity]

index ce6d33c..a4cf5f2 100644 (file)
@@ -1,8 +1,6 @@
-
 key dyndns.example.com. {
        algorithm HMAC-MD5;
-       secret "bvZfFHkl16wNGL/LuEUAqvlBeue9lw7C8GkHnQucN6jpKDMjOu29zFR6LlO5YlpN
-zYquDBmDSPVddX9SuFIK5A==";
+       secret "bvZfFHkl16wNGL/LuEUAqvlBeue9lw7C8GkHnQucN6jpKDMjOu29zFR6LlO5YlpNzYquDBmDSPVddX9SuFIK5A==";
 };
 
 zone "dyndns.org" {
@@ -11,4 +9,4 @@ zone "dyndns.org" {
        allow-update {
                key dyndns.example.com.;
        };
-};
\ No newline at end of file
+};
similarity index 100%
rename from htdocs/config.php
rename to web/config.php
similarity index 72%
rename from htdocs/index.php
rename to web/index.php
index 49a5ff8..1ac33af 100644 (file)
 
 error_reporting(E_ALL);
 
-require_once __DIR__ . '/Dyndns/Helper.php';
-require_once __DIR__ . '/Dyndns/Hosts.php';
-require_once __DIR__ . '/Dyndns/Users.php';
-require_once __DIR__ . '/Dyndns/Server.php';
+require_once __DIR__ . '/lib/Dyndns/Helper.php';
+require_once __DIR__ . '/lib/Dyndns/Hosts.php';
+require_once __DIR__ . '/lib/Dyndns/Users.php';
+require_once __DIR__ . '/lib/Dyndns/Server.php';
 
 $GLOBALS['dyndns'] = new Dyndns\Server();
 $dyndns = $GLOBALS['dyndns'];