我想在服务器上运行JupyterHub,并且可以访问http://jupyter.company.com。 目前可以通过http:// ip:8000访问。
如果我尝试使用Apache 2.4作为反向代理,则启用mod_proxy和包含以下内容的站点configuration:
<VirtualHost ip:*> ServerName jupyter.company.com ProxyPass / http://ip:8000/ ProxyPassReverse / http://ip:8000/ ProxyRequests Off </VirtualHost>
访问jupyter.company.com时,出现500内部服务器错误。 这并不奇怪,因为我没有启用代理模式(哪一个?)或configurationJupyterHub与代理工作。 我无法find有关使用代理服务器的JupyterHub文档中的任何内容。 我怎样才能做这个工作?