Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

Commit

Permalink
update(README): add Nginx proxy template
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxvanyang authored and Crazyokd committed Apr 19, 2023
1 parent 4af5666 commit 0dc3ec9
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,24 @@ npm run lint
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

### Nginx proxy template

```conf
server {
listen 8000;
listen [::]:8000;
server_name localhost;
root /srv/http/chatting;
location / {
index index.php index.html index.htm;
}
location /chatting/ {
proxy_pass http://localhost:8088;
}
}
```

## Reference
- 聊天室界面——[https://github.com/JustCoding-Hai/subtlechat-vue/](https://github.com/JustCoding-Hai/subtlechat-vue)
- 聊天室界面——[https://github.com/JustCoding-Hai/subtlechat-vue/](https://github.com/JustCoding-Hai/subtlechat-vue)

0 comments on commit 0dc3ec9

Please sign in to comment.