Integrate Uffizzi

This commit is contained in:
Vibhav Bobade 2022-10-14 17:36:10 +05:30
parent 9925309492
commit 2a1a7ef00a
5 changed files with 304 additions and 0 deletions

28
.github/uffizzi/nginx/nginx.conf vendored Normal file
View file

@ -0,0 +1,28 @@
events {
worker_connections 4096; ## Default: 1024
}
http {
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 8081;
location / {
proxy_pass http://localhost:7681;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
location /meilisearch/ {
# rewrite /meilisearch/(.*) /$1 break;
proxy_pass http://localhost:7700/;
}
}
}