mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-26 16:05:58 +03:00
[GH-ISSUE #574] Admin profile shown after login #337
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#337
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cairoapcampos on GitHub (Mar 2, 2023).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/574
By configuring WebVirtCloud in docker, I was able to add the compute node without any issues. However, after changing the admin user's password, this profile is shown every time after login.
What configuration should I do so that it is no longer shown after login?
I remove screen data because of the image being shared here.
@catborise commented on GitHub (Mar 3, 2023):
yes it does. but because of link redirection. to fix refresh page. then enter full url like: http://localhost:8000
@cairoapcampos commented on GitHub (Mar 3, 2023):
@catborise I'm trying to use WebVirtCloud in production. I configured SSL/TLS. SSL/TLS is defined on the Nginx reverse proxy. This way:
User access: https://webvirtcloud.mydomain.com -> Proxy redirect: http://IP:8085
docker-compose.yml:
nginx webvirtcloud.conf:
proxy_pass http://IP:8085;
Access via domain name worked and I can access the VM consoles because port 443 was defined.
settings.py:
I don't know where to set port 8000. Maybe I'm confusing the ports usage.
@catborise commented on GitHub (May 10, 2023):
sorry for late answer. can you please add
LOGIN_REDIRECT_URL="/instances/"
to settings.py file and restart webvirtcloud app