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']

Apacheサーバーを起動した後、

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...

ベストアンサー1

おすすめ記事