Hello,
How could I make FireEdge as default gui?
We’re running 6.4.4 and default is of course Sunstone at address:
and FireEdge at
https://cloud.company.com/fireedge/sunstone
I’d like to offer our users just FireEdge and no need for Sunstone at all.
Apache configuration is the default which I’ve been trying to modify but with no success.
–
<VirtualHost :80>
RewriteEngine On
RewriteRule ^/?(.) https://%{SERVER_NAME}/$1 [R,L]
Listen 443 https
<VirtualHost *:443>
SSLEngine On
SSLCertificateFile /etc/one/ssl_cert
SSLCertificateKeyFile /etc/one/ssl_keycert
SSLCACertificateFile /etc/one/ssl_cacert
PassengerUser oneadmin
SetEnvIfNoCase ^X.VCENTER.USER$ ^(.*)$ vuser=$1
RequestHeader set X-VCENTER-USER %{vuser}e env=vuser
SetEnvIfNoCase ^X.VCENTER.PASSWORD$ ^(.*)$ vpassword=$1
RequestHeader set X-VCENTER-PASSWORD %{vpassword}e env=vpassword
SetEnvIfNoCase ^X.VCENTER.HOST$ ^(.*)$ vhost=$1
RequestHeader set X-VCENTER-HOST %{vhost}e env=vhost
DocumentRoot /usr/lib/one/sunstone/public
<Directory /usr/lib/one/sunstone/public>
AllowOverride all
Options -MultiViews
Require all granted
</Directory>
ProxyRequests off
ProxyPreserveHost on
# no proxy for /error/ (Apache HTTPd errors messages)
ProxyPass /error/ !
ProxyPass /fireedge http://localhost:2616/fireedge
ProxyPassReverse /fireedge http://localhost:2616/fireedge
RewriteEngine on
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule ^/fireedge/?(.*) "ws://localhost:2616/fireedge/$1" [P,L]
<Location /fireedge>
Order deny,allow
Allow from all
–
Could somebody help me modifying the Apache configuration so FireEdge would be offered from /
Thank you!