| Summary: | Horizon: SECRET_KEYSTORE should be moved to /var/lib/openstack-dashboard | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Matthias Runge <mrunge> |
| Component: | openstack-packstack | Assignee: | Alan Pevec (Fedora) <apevec> |
| Status: | CLOSED EOL | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 22 | CC: | itamar, Jan.van.Eldik, mmagr, p |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-06-14 08:30:23 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
This bug appears to have been reported against 'rawhide' during the Fedora 22 development cycle. Changing version to '22'. More information and reason for this action is here: https://fedoraproject.org/wiki/Fedora_Program_Management/HouseKeeping/Fedora22 This package has changed ownership in the Fedora Package Database. Reassigning to the new owner of this component. this has been solved in a different way now. |
Description of problem: I'm applying the following patch on top of Horizon: Date: Fri, 4 Oct 2013 09:46:36 +0200 Subject: [PATCH] move SECRET_KEYSTORE to '/var/lib/openstack-dashboard' --- openstack_dashboard/local/local_settings.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/local/local_settings.py.example b/openstack_dashboard/local/local_settings.py.example index d120dfc..a60ad0c 100644 --- a/openstack_dashboard/local/local_settings.py.example +++ b/openstack_dashboard/local/local_settings.py.example @@ -88,7 +88,7 @@ HORIZON_CONFIG = { # requests routed to the same dashboard instance or you set the same SECRET_KEY # for all of them. from horizon.utils import secret_key -LOCAL_PATH = '/tmp' +LOCAL_PATH = '/var/lib/openstack-dashboard' SECRET_KEY = secret_key.generate_or_read_from_file(os.path.join(LOCAL_PATH, '.secret_key_store')) ␣ # We recommend you use memcached for development; otherwise after every reload This will change the location of a tmporary dir from somewhere hidden below openstack-dashboard install dir to /var/lib/openstack-dashboard, where also access rights are restricted.