fixes to glance configuration so that we aren't creating files outside of /opt
diff --git a/files/glance-registry.conf b/files/glance-registry.conf
index 20a29cd..fc20988 100644
--- a/files/glance-registry.conf
+++ b/files/glance-registry.conf
@@ -3,7 +3,7 @@
verbose = True
# Show debugging output in logs (sets DEBUG log level output)
-debug = False
+debug = True
# Address to bind the registry server
bind_host = 0.0.0.0
@@ -13,7 +13,10 @@
# Log to this file. Make sure you do not set the same log
# file for both the API and registry servers!
-log_file = /var/log/glance/registry.log
+log_file = %DEST%/glance/registry.log
+
+# Where to store images
+filesystem_store_datadir %DEST%/glance/images
# Send logs to syslog (/dev/log) instead of to file specified by `log_file`
use_syslog = False