gpt4 book ai didi

ajax - 使用 SSL 通过 NginX 安装 AjaxTerm

转载 作者:太空宇宙 更新时间:2023-11-03 13:43:18 27 4
gpt4 key购买 nike

我正在使用 Ubuntu 11.04 并尝试使用 https 安装 AjaxTerm。任何使用 NginX 通过 https 协议(protocol)为 AjaxTerm 提供服务的指南?

我还想将 AjaxTerm 放在 https://localhost/ajaxterm/ 下提供服务而不是默认的 http://localhost:8022 .怎么做?

谢谢。

最佳答案

我假设您想将 ajaxterm 设置到远程服务器而不是真正的本地主机。

在像/ajaxterm 这样的 url 上设置会很困难,但是你可以很容易地在像 ajaxterm.yourserver.com 这样的子域上设置它,在 nginx 的 http 指令中使用以下行

server {
listen 80;
server_name ajaxterm.yourserver.com;
location / {
proxy_pass http://127.0.0.1:8022;
proxy_redirect default;
}
}

这应该给你 http://ajaxterm.yourserver.com为你奔跑。要让它在 https 上运行,您可以调整 apache 的说明 here

关于ajax - 使用 SSL 通过 NginX 安装 AjaxTerm,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7924744/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com