Nginx代理到本地ttyd端口7681的配置方法
要将Nginx配置为代理到本机的ttyd端口7681,可以按照以下步骤进行配置:
- 打开Nginx的配置文件,通常位于
/etc/nginx/nginx.conf或/etc/nginx/conf.d/default.conf。 - 在
http块中添加一个新的server块,如下所示:
server {
listen 80;
server_name your_domain.com;
location / {
proxy_pass http://localhost:7681;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
}
}
请确保将your_domain.com替换为您的域名或IP地址。
- 保存并关闭配置文件。
- 检查Nginx配置文件的语法是否正确:
sudo nginx -t。如果没有错误,继续下一步。 - 重新加载Nginx配置:
sudo systemctl reload nginx。 - 确保ttyd正在监听端口7681。如果没有,请启动ttyd并确保它正在监听正确的端口。
现在,当您访问http://your_domain.com时,Nginx将代理到本地的ttyd端口7681。
原文地址: https://www.cveoy.top/t/topic/fNBO 著作权归作者所有。请勿转载和采集!