This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues/pull-requests.
|
worker_processes 4;
|
|
|
|
events { worker_connections 1024; }
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
include /etc/nginx/mime.types;
|
|
|
|
location /appui {
|
|
try_files $uri /index.html;
|
|
}
|
|
}
|
|
} |