mirror of
https://github.com/intari/search2_chatgpt.git
synced 2025-09-01 18:19:39 +00:00
17 lines
270 B
Text
17 lines
270 B
Text
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|
|
|
|
location /files/ {
|
|
root /usr/share/nginx/html;
|
|
autoindex on;
|
|
}
|
|
|
|
location /search {
|
|
proxy_pass http://backend:8000;
|
|
}
|
|
}
|