Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/troubleshooting.html
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,15 @@
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#q-How-to-configure-centralized-proxy" class="md-nav__link">
<span class="md-ellipsis">
Q: How to configure centralized proxy?
</span>
</a>

</li>

</ul>
Expand Down
71 changes: 71 additions & 0 deletions docs_src/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,74 @@ Simply add the serial number to the `INPUTSRC` argument when calling the pipelin
```
INPUTSRC=725112060400 make run-demo
```

## Q: How to configure centralized proxy?

A: Please follow the below steps to configure the proxy

# 1. Configure Proxy for the Current Shell Session

```bash
export http_proxy=http://<proxy-host>:<port>
export https_proxy=http://<proxy-host>:<port>
export HTTP_PROXY=http://<proxy-host>:<port>
export HTTPS_PROXY=http://<proxy-host>:<port>
export NO_PROXY=localhost,127.0.0.1,::1
export no_proxy=localhost,127.0.0.1,::1
export socks_proxy=http://<proxy-host>:<port>
export SOCKS_PROXY=http://<proxy-host>:<port>
```

# 2. System-Wide Proxy Configuration

System-wide environment (/etc/environment)
(Run: sudo nano /etc/environment and add or update)

```bash
http_proxy=http://<proxy-host>:<port>
https_proxy=http://<proxy-host>:<port>
ftp_proxy=http://<proxy-host>:<port>
socks_proxy=http://<proxy-host>:<port>
no_proxy=localhost,127.0.0.1,::1

HTTP_PROXY=http://<proxy-host>:<port>
HTTPS_PROXY=http://<proxy-host>:<port>
FTP_PROXY=http://<proxy-host>:<port>
SOCKS_PROXY=http://<proxy-host>:<port>
NO_PROXY=localhost,127.0.0.1,::1
```
# 3. Docker Daemon & Client Proxy Configuration

Docker daemon drop-in (/etc/systemd/system/docker.service.d/http-proxy.conf)
Create dir if missing:
sudo mkdir -p /etc/systemd/system/docker.service.d
sudo nano /etc/systemd/system/docker.service.d/http-proxy.conf

```bash
[Service]
Environment="http_proxy=http://<proxy-host>:<port>"
Environment="https_proxy=http://<proxy-host>:<port>"
Environment="no_proxy=localhost,127.0.0.1,::1"
Environment="HTTP_PROXY=http://<proxy-host>:<port>"
Environment="HTTPS_PROXY=http://<proxy-host>:<port>"
Environment="NO_PROXY=localhost,127.0.0.1,::1"
Environment="socks_proxy=http://<proxy-host>:<port>"
Environment="SOCKS_PROXY=http://<proxy-host>:<port>"

# Reload & restart:
sudo systemctl daemon-reload
sudo systemctl restart docker

# Docker client config (~/.docker/config.json)
# mkdir -p ~/.docker
# nano ~/.docker/config.json
{
"proxies": {
"default": {
"httpProxy": "http://<proxy-host>:<port>",
"httpsProxy": "http://<proxy-host>:<port>",
"noProxy": "localhost,127.0.0.1,::1"
}
}
}
```
12 changes: 0 additions & 12 deletions docs_src/use-cases/AiCSD/aicsd.md

This file was deleted.

109 changes: 0 additions & 109 deletions docs_src/use-cases/AiCSD/pipeline-grpc-go.md

This file was deleted.

1 change: 0 additions & 1 deletion docs_src/use-cases/use-cases.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Intel Retail Use Cases

- [Automated Self Checkout](./automated-self-checkout/automated-self-checkout.md)
- [AI Connect for Scientific Data (AiCSD)](./AiCSD/aicsd.md)
- [Retail Use Cases: C-API for YOLOV8 ensemble](./capi-yolov8-ensemble/capi-yolov8-ensemble.md)
- [Loss Prevention](./loss-prevention/loss-prevention.md)
Loading