Files
stacks/api/auth.conf.template
T

10 lines
154 B
Plaintext
Raw Normal View History

server {
listen 8080;
location / {
if ($http_x_api_key != '${API_TOKEN}') {
return 401;
}
return 200;
}
}