forked from AkkomaGang/akkoma
nginx sample config, quickly tested
This commit is contained in:
parent
077faaed8c
commit
d1806ec07f
1 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
proxy_cache_path /tmp/pleroma-media-cache levels=1:2 keys_zone=pleroma_media_cache:10m max_size=10g
|
||||||
|
inactive=720m use_temp_path=off;
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
server_name example.tld;
|
server_name example.tld;
|
||||||
|
@ -21,6 +24,13 @@ server {
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://localhost:4000;
|
proxy_pass http://localhost:4000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /proxy {
|
||||||
|
proxy_cache pleroma_media_cache;
|
||||||
|
proxy_cache_lock on;
|
||||||
|
proxy_pass http://localhost:4000;
|
||||||
|
}
|
||||||
|
|
||||||
include snippets/well-known.conf;
|
include snippets/well-known.conf;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue