You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Not a bug but a suggestion for future versions. Since RSunstone will be soon deprecated, FSunstone should be configured as the main WebUI in the Apache config.
To Reproduce
Provision an OpenNebula cloud with Apache2 enabled.
Expected behavior
FireEdge Sunstone should be reachable as the default WebUI (In the / route). The following Apache config is suggested for non-SSL deployments:
<VirtualHost *:80>
ServerName <OMITTED>
PassengerUser oneadmin
# Remove or comment out the GEM_PATH and GEM_HOME lines if they are no longer needed for Sunstone:
# SetEnv GEM_PATH /usr/share/one/gems/
# SetEnv GEM_HOME /usr/share/one/gems/
# Proxy configuration to route / to localhost:2616
ProxyRequests off
ProxyPreserveHost on
# Forward the root path / to localhost:2616
ProxyPass / http://localhost:2616/
ProxyPassReverse / http://localhost:2616/
# WebSocket upgrade rules
RewriteEngine on
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule ^/?(.*) "ws://localhost:2616/$1" [P,L]
<Location />
Order deny,allow
Allow from all
</Location>
</VirtualHost>
Progress Status
Code committed
Testing - QA
Documentation (Release notes - resolved issues, compatibility, known issues)
The text was updated successfully, but these errors were encountered:
Description
Not a bug but a suggestion for future versions. Since RSunstone will be soon deprecated, FSunstone should be configured as the main WebUI in the Apache config.
To Reproduce
Provision an OpenNebula cloud with Apache2 enabled.
Expected behavior
FireEdge Sunstone should be reachable as the default WebUI (In the / route). The following Apache config is suggested for non-SSL deployments:
Progress Status
The text was updated successfully, but these errors were encountered: