Erro de proxy do Apache para o servidor Bokeh

3

meu objetivo é implantar um aplicativo Bokeh em um servidor Apache em execução no Fedora 25. Depois de iniciar o servidor do bokeh ...

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

e depois de iniciar o servidor apache eu recebo

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

quando eu coloco o IP do servidor em um navegador: http://10.10.10.10:80/clsMaster/

Então eu verifiquei meu /etc/httpd/conf.d/httpd_bokeh.conf , mas eu localizei o erro

   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>

Minha estrutura de pastas para o painel é a seguinte

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

Estranhamente, não há registros produzidos no caminho que eu especifiquei var/www/dashboard/logs/bokeh-error_log . Eu não tenho acesso a /var/log/httpd/ .

O que eu também não entendo é que quando eu deixo de fora o clsMaster no URL, então http://10.10.10.10:80 recebo Service unavailable... em vez do erro de proxy acima.

    
por tenticon 10.05.2017 / 19:58

0 respostas