ubuntu上部署etherpad(生产环境)

2023-10-26

Nginx:

To put EL behind reverse proxy (in this case Nginx), you will need an virtualhost that looks something like this:

server {
listen 80;
server_name your.domain.tld;
access_log /var/log/nginx/your.domain.tld.log;
error_log /var/log/nginx/your.domain.tld.log;
location / {
proxy_pass http://localhost:9001/;
proxy_set_header Host $host;
proxy_buffering off;
}
}

How to deploy Etherpad Lite as a service
[url]https://github.com/ether/etherpad-lite/wiki/How-to-deploy-Etherpad-Lite-as-a-service[/url]


[url]https://github.com/ether/pad/wiki/installation-instructions-ii[/url]
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

ubuntu上部署etherpad(生产环境) 的相关文章

随机推荐