mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
13 lines
369 B
Text
13 lines
369 B
Text
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name <webserver>;
|
||
|
|
root /var/www/;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
index index.html;
|
||
|
|
default_type text/plain;
|
||
|
|
set $memcached_key memfis://<hostname>$uri;
|
||
|
|
memcached_pass 127.0.0.1:11211;
|
||
|
|
}
|
||
|
|
}
|