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

update(README): add Nginx proxy template #49

Merged
merged 1 commit into from
Apr 19, 2023
Merged
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
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)