Setting up cryptpad server: Difference between revisions

From Irregularpedia
Jump to navigation Jump to search
format and shell
No edit summary
Tag: 2017 source edit
Line 18: Line 18:
PM2 should be used instead of foreverjs and not just node.
PM2 should be used instead of foreverjs and not just node.


<nowiki><pre></nowiki>
<pre>


pm2 start server.js --name cryptpad
pm2 start server.js --name cryptpad
Line 26: Line 26:
pm2 list
pm2 list


<nowiki></pre></nowiki>
</pre>
=== NGINX ===
=== NGINX ===


<nowiki><pre></nowiki>
<pre>


sudo apt update;sudo apt install nginx -y
sudo apt update;sudo apt install nginx -y
Line 39: Line 39:
sudo openssl dhparam -out /etc/nginx/dhparam.pem 4096
sudo openssl dhparam -out /etc/nginx/dhparam.pem 4096


<nowiki></pre></nowiki>
</pre>


== Updating Cryptpad ==
== Updating Cryptpad ==

Revision as of 04:37, 22 September 2024

Source: https://docs.cryptpad.org/en/admin_guide/installation.html

!information#References

Trouble Shooting Cryptpad

https://cryptpad.irregularchat.com/checkup/

Configuring Cryptpad

Configuring Office Products

Configuring an Identity Provider

Serving Cryptpad

Serving Detached

PM2 should be used instead of foreverjs and not just node.


pm2 start server.js --name cryptpad

pm2 save

pm2 list

NGINX


sudo apt update;sudo apt install nginx -y

sudo mkdir -p /etc/nginx/conf.d/

sudo nano /etc/nginx/conf.d/cryptpad.conf

sudo openssl dhparam -out /etc/nginx/dhparam.pem 4096

Updating Cryptpad