/etc/httpd/conf.d/horizon.conf

Jmnote (토론 | 기여)님의 2017년 9월 25일 (월) 12:40 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

/etc/httpd/conf.d/horizon.conf
<VirtualHost *:80>
    ServerName  controller.openstack.test
    ServerAlias 192.168.56.101
    ServerAlias localhost

    DocumentRoot /usr/local/horizon/
    ErrorLog /var/log/httpd/horizon_error.log
    CustomLog /var/log/httpd/horizon_access.log combined
    LogLevel warn

    WSGIDaemonProcess apache group=apache processes=3 threads=10 user=apache
    WSGIProcessGroup apache
    WSGIApplicationGroup %{GLOBAL}
    WSGIScriptAlias /dashboard /usr/local/horizon/openstack_dashboard/wsgi/django.wsgi
    Alias /dashboard/static /usr/local/horizon/static
    RedirectMatch permanent  ^/$ /dashboard

    <Location "/">
        Require all granted
    </Location>
    <Location "/static">
        SetHandler None
    </Location>
</Virtualhost>

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}