You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the `frontend/chatbot-rag/dynamic_config.json` and `backend/pipelines/dynamic_config.json` files:
163
+
- Fill in the "ON" or "OFF" to config verification strategy.
164
+
- Fill in the hash value obtained through the above command into the `dynamic_config.json` file of the corresponding directory. For example, the hash value obtained from the backend should be filled in the frontend configuration file.
165
+
166
+
**Add RA configuration when running backend service container**
167
+
168
+
```shell
169
+
./run.sh backend ra <ip addr>
170
+
```
171
+
The "ra" means "remote attestation" and the subsequent IP address is the attestation server address.
172
+
173
+
Then, enter the following message:
174
+
175
+
```shell
176
+
Enter database ip addr: <database ip addr>
177
+
178
+
Enter database username: root
179
+
180
+
Enter database password: 123456
181
+
```
182
+
183
+
It will finally print the attestation message. It means the backend server runs successfully.
184
+
185
+
**Add RA configuration when running frontend service container**
186
+
187
+
```shell
188
+
./run.sh frontend ra <ip addr>
189
+
```
190
+
191
+
The "ra" means "remote attestation" and the subsequent IP address is the attestation server address.
192
+
193
+
**Visit the Web UI and ask questions**
194
+
195
+
You can click the link generated by the frontend service to access the RAG service.
196
+
197
+
If everything goes well, you should be able to see the green security connection box at the web page, and the detailed information about remote attestation below.
0 commit comments