From f8aa3247303a857a07581d9e97d08347d149b4d5 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sun, 4 Jul 2021 12:05:24 -0500 Subject: Added writefreely backup. --- writefreely/templates/config.ini.j2 | 71 --------------------------- writefreely/templates/nginx.conf.j2 | 54 -------------------- writefreely/templates/writefreely@.service.j2 | 12 ----- 3 files changed, 137 deletions(-) delete mode 100644 writefreely/templates/config.ini.j2 delete mode 100644 writefreely/templates/nginx.conf.j2 delete mode 100644 writefreely/templates/writefreely@.service.j2 (limited to 'writefreely/templates') diff --git a/writefreely/templates/config.ini.j2 b/writefreely/templates/config.ini.j2 deleted file mode 100644 index bb5fe7f..0000000 --- a/writefreely/templates/config.ini.j2 +++ /dev/null @@ -1,71 +0,0 @@ -[server] -hidden_host = -port = {{writefreely_port}} -bind = localhost -tls_cert_path = -tls_key_path = -autocert = false -templates_parent_dir = -static_parent_dir = -pages_parent_dir = -keys_parent_dir = -hash_seed = - -[database] -type = sqlite3 -filename = writefreely.db -username = -password = -database = writefreely -host = localhost -port = 3306 - -[app] -site_name = {{writefreely_site_name}} -site_description = -host = {{writefreely_url}} -theme = write -editor = -disable_js = false -webfonts = true -landing = /read -simple_nav = false -wf_modesty = false -chorus = false -forest = false -disable_drafts = false -single_user = false -open_registration = false -min_username_len = 3 -max_blogs = 1 -federation = true -public_stats = true -private = false -local_timeline = true -user_invites = admin -default_visibility = public -update_checks = false - -[oauth.slack] -client_id = -client_secret = -team_id = -callback_proxy = -callback_proxy_api = - -[oauth.writeas] -client_id = -client_secret = -auth_location = -token_location = -inspect_location = -callback_proxy = -callback_proxy_api = - -[oauth.gitlab] -client_id = -client_secret = -host = -display_name = -callback_proxy = -callback_proxy_api = diff --git a/writefreely/templates/nginx.conf.j2 b/writefreely/templates/nginx.conf.j2 deleted file mode 100644 index 4f1cf4d..0000000 --- a/writefreely/templates/nginx.conf.j2 +++ /dev/null @@ -1,54 +0,0 @@ -server { - listen 80; - server_name {{nginx_server_name}}; - return 301 https://$host$request_uri; -} - -server { - listen 443 ssl http2; - server_name {{nginx_server_name}}; - - ssl_certificate {{nginx_ssl_cert}}; - ssl_certificate_key {{nginx_ssl_privkey}}; - ssl_ecdh_curve X25519:prime256v1:secp384r1:secp521r1; - - 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; - gzip_vary on; - - location ~ ^/.well-known/(webfinger|nodeinfo|host-meta) { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $remote_addr; - proxy_pass http://127.0.0.1:{{nginx_proxy_port}}; - proxy_redirect off; - } - - location ~ ^/(css|img|js|fonts)/ { - root {{nginx_static_content}}; - # Optionally cache these files in the browser: - # expires 12M; - } - - location / { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $remote_addr; - proxy_pass http://127.0.0.1:{{nginx_proxy_port}}; - proxy_redirect off; - } -} diff --git a/writefreely/templates/writefreely@.service.j2 b/writefreely/templates/writefreely@.service.j2 deleted file mode 100644 index bf0d03b..0000000 --- a/writefreely/templates/writefreely@.service.j2 +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=WriteFreely %I Instance -After=syslog.target network.target - -[Service] -WorkingDirectory={{writefreely_dir}}/%i/ -ExecStart=/usr/local/bin/writefreely -Restart=always -User={{writefreely_user}} - -[Install] -WantedBy=multi-user.target -- cgit v1.2.3