Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
18230 authored Jan 26, 2024
1 parent 5f0f6bd commit a1f5710
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,22 @@ else
fi
```


## Nginx反代远程地址
```
server {
listen 80;
server_name chat.xxx.com; 
location / {
proxy_pass https://chat.openai.com; 
proxy_set_header Host chat.openai.com; 
proxy_buffering off;
proxy_ssl_server_name on;
}
}
```


## Docker常用
```
安装docker及docker compose
Expand Down

0 comments on commit a1f5710

Please sign in to comment.