mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
chore: update demo
This commit is contained in:
parent
8c1cdda305
commit
8db848090a
4 changed files with 18 additions and 0 deletions
|
@ -9,3 +9,9 @@ StartCmd = bash
|
|||
[nginx_log]
|
||||
AccessLogPath = /var/log/nginx/access.local.log
|
||||
ErrorLogPath = /var/log/nginx/error.local.log
|
||||
|
||||
[openai]
|
||||
Model = gpt-3.5-turbo
|
||||
BaseUrl =
|
||||
Proxy =
|
||||
Token =
|
||||
|
|
Binary file not shown.
11
resources/development/nginx/sites-available/ojbk.me
Normal file
11
resources/development/nginx/sites-available/ojbk.me
Normal file
|
@ -0,0 +1,11 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name ojbk.me;
|
||||
location /.well-known/acme-challenge {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real_IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr:$remote_port;
|
||||
proxy_pass http://127.0.0.1:5002;
|
||||
}
|
||||
}
|
1
resources/development/nginx/sites-enabled/ojbk.me
Symbolic link
1
resources/development/nginx/sites-enabled/ojbk.me
Symbolic link
|
@ -0,0 +1 @@
|
|||
/etc/nginx/sites-available/ojbk.me
|
Loading…
Add table
Add a link
Reference in a new issue