[GH-ISSUE #86] hosting webvirtmgr with FC18 #72

Closed
opened 2026-02-27 16:00:57 +03:00 by kerem · 0 comments
Owner

Originally created by @deadhorseconsulting on GitHub (Jul 13, 2013).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/86

The documented process for hosting webvirtmgr does not work for Fedora 18.

I ended up constructing and placing the following webvirtmgr.conf in /etc/httpd/conf.d/ to get things up and running.


Listen 8000
<VirtualHost *:8000>
WSGIDaemonProcess webvirtmgr display-name={%GROUP} python-path=/var/www/webvirtmgr/
WSGIProcessGroup webvirtmgr
WSGIScriptAlias / /var/www/webvirtmgr/webvirtmgr/wsgi.py

Alias /static /var/www/webvirtmgr/static/
Alias /media /var/www/webvirtmgr/media/

<Directory /var/www/webvirtmgr/webvirtmgr>
    <Files wsgi.py>
        Order deny,allow
        Allow from all
    </Files>
</Directory>
</VirtualHost>

  • DHC
Originally created by @deadhorseconsulting on GitHub (Jul 13, 2013). Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/86 The documented process for hosting webvirtmgr does not work for Fedora 18. I ended up constructing and placing the following webvirtmgr.conf in /etc/httpd/conf.d/ to get things up and running. ``` xml Listen 8000 <VirtualHost *:8000> WSGIDaemonProcess webvirtmgr display-name={%GROUP} python-path=/var/www/webvirtmgr/ WSGIProcessGroup webvirtmgr WSGIScriptAlias / /var/www/webvirtmgr/webvirtmgr/wsgi.py Alias /static /var/www/webvirtmgr/static/ Alias /media /var/www/webvirtmgr/media/ <Directory /var/www/webvirtmgr/webvirtmgr> <Files wsgi.py> Order deny,allow Allow from all </Files> </Directory> </VirtualHost> ``` - DHC
kerem closed this issue 2026-02-27 16:00:57 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/webvirtmgr#72
No description provided.