Bokeh 서버의 Apache 프록시 오류

Bokeh 서버의 Apache 프록시 오류

내 목표는 Fedora 25에서 실행되는 Apache 서버에 Bokeh 애플리케이션을 배포하는 것입니다. Bokeh 서버를 시작한 후...

2017-05-10 18:17:27,759 Starting Bokeh server on port 5100 with applications at paths ['/clsMaster']

아파치 서버를 시작한 후 나는

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /clsMaster.
Reason: DNS lookup failure for: 127.0.0.1:5100clsmaster

브라우저에 서버의 IP를 입력하면:http://10.10.10.10:80/clsMaster/

그래서 내 것을 확인했는데 /etc/httpd/conf.d/httpd_bokeh.conf오류가 발견되었습니다.

   ServerRoot "/etc/httpd"
   Listen 80
   Include conf.modules.d/*.conf
   User apache
   Group apache
   ServerName localhost

 <VirtualHost *:80>
    DocumentRoot /var/www/dashboard/
    ServerAdmin [email protected]
    ErrorLog /var/www/dashboard/logs/bokeh-error_log
    CustomLog /var/www/dashboard/logs/bokeh-access_log common

    ProxyPreserveHost On
    ProxyPass / http://127.0.0.1:5100/
    ProxyPassReverse / http://127.0.0.1:5100/

    ProxyPass / http://127.0.0.1:5100/clsMaster/
    ProxyPassReverse / http://127.0.0.1:5100/clsMaster/

    <Directory />
            Require all granted
            Options -Indexes
    </Directory>

    Alias /static /var/www/dashboard/static
    <Directory /var/www/dashboard/static>
            Options +Indexes
    </Directory>
 </VirtualHost>

내 대시보드 폴더 구조는 다음과 같습니다

/var/www/dashboard/
    |
    +---data
    |     +---mydata.csv
    |
    +---clsMaster.py
    |
    +---static
    |      +----some.html

이상한 점은 내가 지정한 경로에 로그가 생성되지 않는다는 것입니다 var/www/dashboard/logs/bokeh-error_log. 액세스할 수 없습니다 /var/log/httpd/.

또한 제가 이해하지 못하는 점은 clsMasterURL에서 를 생략하면 위의 오류 대신 프록시 오류가 http://10.10.10.10:80발생한다는 것입니다 .Service unavailable...

관련 정보