ubuntu上部署etherpad(生产环境)

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
https://github.com/ether/etherpad-lite/wiki/How-to-deploy-Etherpad-Lite-as-a-service




https://github.com/ether/pad/wiki/installation-instructions-ii

你可能感兴趣的:(etherpad)