
- test is no longer marked as extended - no building required -> removed nginx build scripts Type: test Change-Id: I1814b1e4b7e514f81797efa3b5c1e818d2fe4cda Signed-off-by: Adrian Villin <avillin@cisco.com>
28 lines
531 B
Plaintext
28 lines
531 B
Plaintext
master_process on;
|
|
worker_processes 2;
|
|
daemon off;
|
|
|
|
error_log /tmp/nginx/{{.LogPrefix}}-error.log info;
|
|
|
|
events {
|
|
use epoll;
|
|
accept_mutex off;
|
|
multi_accept off;
|
|
}
|
|
|
|
http {
|
|
quic_gso on;
|
|
quic_retry on;
|
|
|
|
access_log /tmp/nginx/{{.LogPrefix}}-access.log;
|
|
keepalive_timeout 300s;
|
|
sendfile on;
|
|
server {
|
|
listen 0.0.0.0:8443 quic;
|
|
root /usr/share/nginx;
|
|
ssl_certificate /etc/nginx/ssl/localhost.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/localhost.key;
|
|
index index.html index.htm;
|
|
}
|
|
}
|