aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2022-11-11-nginx-tmp-errors.md
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-05-01 21:45:52 -0500
committerChristian Cleberg <[email protected]>2024-05-01 21:45:52 -0500
commit7d3b5175f2d9d016b06190273fcfeb380a460b3f (patch)
tree71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2022-11-11-nginx-tmp-errors.md
parent7c70a351e25106ceff49ff8ee0a38e2a545f62f0 (diff)
downloadcleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.gz
cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.bz2
cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.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.md10
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;