mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
12 lines
369 B
Text
12 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;
|
|
}
|
|
}
|