16 lines
247 B
Plaintext
16 lines
247 B
Plaintext
|
load_module modules/ngx_http_js_module.so;
|
||
|
|
||
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
|
||
|
js_import pep.js;
|
||
|
js_set $authorization pep.enforce;
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
include /etc/nginx/sites-enabled/*;
|
||
|
}
|