mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-02-05 09:33:07 -08:00
13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
user=$1
|
|
domain=$2
|
|
ip=$3
|
|
home=$4
|
|
docroot=$5
|
|
|
|
str="proxy_cache_path /var/cache/nginx/$domain levels=2"
|
|
str="$str keys_zone=$domain:10m inactive=60m max_size=512m;"
|
|
echo "$str" >> /etc/nginx/conf.d/01_caching_pool.conf
|
|
|