mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 23:55:57 +03:00
[GH-ISSUE #249] Run WebVirtMgr on subdirectory instead of subdomain/domain #196
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 @camjac251 on GitHub (Feb 27, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/249
My current nginx config setup is
server {
listen 80;
root /usr/share/nginx/www;
index index.php index.html index.htm;
If I try to add
to my first config, it will give me webvirts error, and try to load resources from http://mydomain.com/ instead of http://mydomain.com/panel
Has anyone been able to get this working on a subdirectory? I would like to know how.
The reason why I'd like to do this is because I will be getting an EV SSL cert and would like everything secured under it, not have multiple subdomains with more ssl's.
@retspen commented on GitHub (Feb 28, 2014):
Subdirectory doesn't work or reallocate all route in urls.py (add /panel before all url)
@camjac251 commented on GitHub (Feb 28, 2014):
But is it possible?