File size: 271 Bytes
5c23268
 
 
 
 
 
 
 
7f6ec81
 
5c23268
 
dcb90cd
1
2
3
4
5
6
7
8
9
10
11
12
13
events {}

http {
    server {
        listen 80;

        location / {
            access_by_lua_file /usr/local/openresty/nginx/lua/validate_api_key.lua;
            proxy_pass http://localhost:11434;
            proxy_set_header Host localhost:11434;
        }
    }
}