Getting Started With WriteFreely - Product - Nginx - Systemd
Getting Started With WriteFreely - Product - Nginx - Systemd
org%2Fstart
writefreely.org
This guide will walk you through setting up your own WriteFreely
instance. It requires technical knowledge and access to a server
you control.
Run into problems along the way? Ask for help on our forum.
Requirements
• About 30 minutes
Set Up
1 of 6 31-Oct-22, 6:55 AM
Getting Started with WriteFreely about:reader?url=https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Fwritefreely.org%2Fstart
Extract the files and go into the project folder. Next, start the
configuration process by running the following command. This
will walk you through the various ways you can configure your
instance:
writefreely
Running in Production
Standalone server
2 of 6 31-Oct-22, 6:55 AM
Getting Started with WriteFreely about:reader?url=https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Fwritefreely.org%2Fstart
server {
listen 80;
listen [::]:80;
server_name example.com;
gzip on;
gzip_types
application/javascript
application/x-javascript
application/json
application/rss+xml
application/xml
image/svg+xml
image/x-icon
application/vnd.ms-fontobject
application/font-sfnt
text/css
text/plain;
gzip_min_length 256;
gzip_comp_level 5;
gzip_http_version 1.1;
3 of 6 31-Oct-22, 6:55 AM