diff options
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -5,12 +5,19 @@ // Set the publically viewable URL for this Gentoaster instance define("GENTOASTER_URL", "http://192.168.2.169"); + + // Set the publically viewable URL for images to be downloaded + // This should point to the same folder as CONFIGURATIONS_PATH + define("IMAGES_URL", "http://192.168.2.169/images"); // Set the path that completed images should be stored at define("CONFIGURATIONS_PATH", "/var/www/gentoaster/images"); // Set the path to the folder the Gentoaster tool is at - define("GENTOASTER_PATH", "/usr/share/gentoaster"); + // As long as we're not being used by the WebUI + if (!defined("GENTOASTER_PATH")) { + define("GENTOASTER_PATH", "/usr/share/gentoaster"); + } // Set the name of the image creation tool define("BUILD_TOOL_NAME", "create_image.sh"); |