Skip to content

Commit 3beca83

Browse files
authored
Update README.md
1 parent cfa6dfb commit 3beca83

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,26 @@ kubectl apply -f https://raw.githubusercontent.com/zilliztech/attu/main/attu-k8s
8484

8585
Make sure that the Attu pod can access the Milvus service. In the example provided this connects directly to `my-release-milvus:19530`. Change this based on the Milvus service name. A more flexible way to achieve this would be to introduce a `ConfigMap`. See this [example]("https://raw.githubusercontent.com/zilliztech/attu/main/examples/attu-k8s-deploy-ConfigMap.yaml") for details.
8686

87+
### Running Attu behind a nginx proxy
88+
```nginx
89+
server {
90+
listen 8080;
91+
server_name localhost;
92+
93+
location /attu/ {
94+
proxy_pass http://localhost:3000/;
95+
proxy_http_version 1.1;
96+
proxy_set_header Upgrade $http_upgrade;
97+
proxy_set_header Connection "upgrade";
98+
proxy_set_header Host $host;
99+
proxy_set_header X-Real-IP $remote_addr;
100+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
101+
proxy_set_header X-Forwarded-Proto $scheme;
102+
rewrite ^/attu/(.*)$ /$1 break;
103+
}
104+
}
105+
```
106+
87107
### Install Desktop application
88108

89109
If you prefer to use a desktop application, you can download the [desktop version of Attu](https://github.com/zilliztech/attu/releases/).

0 commit comments

Comments
 (0)