41 lines
804 B
Nginx Configuration File
41 lines
804 B
Nginx Configuration File
![]() |
user web;
|
||
|
worker_processes 4;
|
||
|
|
||
|
# Speed up regular expressions.
|
||
|
pcre_jit on;
|
||
|
|
||
|
error_log stderr debug;
|
||
|
|
||
|
events {
|
||
|
# Connections per worker process.
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
include /etc/nginx/mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
server_tokens off;
|
||
|
client_max_body_size 1m;
|
||
|
sendfile on;
|
||
|
tcp_nopush on;
|
||
|
|
||
|
server {
|
||
|
listen 8080;
|
||
|
root /srv/http/public;
|
||
|
|
||
|
location / {
|
||
|
index index.html index.htm;
|
||
|
if (-d $request_filename) {
|
||
|
rewrite [^/]$ $http_x_forwarded_proto://$http_host$uri/ redirect;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
location /healthz {
|
||
|
access_log off;
|
||
|
add_header 'Content-Type' 'application/json';
|
||
|
return 200 '{"status":"OK"}';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|