diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-05-01 21:45:52 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-05-01 21:45:52 -0500 |
commit | dc1261d703ae1e1a14841b030888e3f87ff7c38f (patch) | |
tree | 71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2022-11-11-nginx-tmp-errors.md | |
parent | ba6b552c8256cc2e071c910ef7821c82443f1f82 (diff) | |
download | cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.gz cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.bz2 cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.zip |
prettier formatting and rewrap lines
Diffstat (limited to 'content/blog/2022-11-11-nginx-tmp-errors.md')
-rw-r--r-- | content/blog/2022-11-11-nginx-tmp-errors.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/blog/2022-11-11-nginx-tmp-errors.md b/content/blog/2022-11-11-nginx-tmp-errors.md index 356db15..32a1913 100644 --- a/content/blog/2022-11-11-nginx-tmp-errors.md +++ b/content/blog/2022-11-11-nginx-tmp-errors.md @@ -5,8 +5,8 @@ description = "" draft = false +++ -*This is a brief post so that I personally remember the solution as it has -occurred multiple times for me.* +_This is a brief post so that I personally remember the solution as it has +occurred multiple times for me._ # The Problem @@ -45,7 +45,7 @@ doas chown -R nginx:nginx /var/lib/nginx sudo chown -R nginx:nginx /var/lib/nginx ``` -You *may* also be able to change the `proxy_temp_path` in your Nginx config, but +You _may_ also be able to change the `proxy_temp_path` in your Nginx config, but I did not try this. Here's a suggestion I found online that may work if the above solution does not: @@ -53,11 +53,11 @@ above solution does not: nano /etc/nginx/http.d/example.com.conf ``` -``` conf +```conf server { ... - # Set the proxy_temp_path to your preference, make sure it's owned by the + # Set the proxy_temp_path to your preference, make sure it's owned by the # `nginx` user proxy_temp_path /tmp; |