Skip to content

Commit ba47798

Browse files
committed
doc: use pagespy.jikejishu.com instead of test.jikejishu.com
1 parent fa0f665 commit ba47798

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

src/pages/Docs/md/faq.en.mdx

+9-9
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ PageSpy has published integration guides for all popular frameworks on the CodeS
5050
- **Nextjs**[CodeSandbox - PageSpy in Nextjs](https://codesandbox.io/p/sandbox/page-spy-with-nextjs-5htxv5)
5151
- **Nuxtjs**[CodeSandbox - PageSpy in Nuxtjs](https://codesandbox.io/p/sandbox/page-spy-with-nuxtjs-8znq22)
5252

53-
### Is test.jikejishu.com an Officially Provided Domain? Will It Always Be Available? #test-domain
53+
### Is pagespy.jikejishu.com an Officially Provided Domain? Will It Always Be Available? #test-domain
5454

55-
[https://test.jikejishu.com](https://test.jikejishu.com) is a temporary service set up by us to allow everyone to experience and learn PageSpy online. We do not guarantee 24-hour availability, data security, or assume responsibility for any losses. We strongly recommend deploying privately or within an intranet after experiencing.
55+
[https://pagespy.jikejishu.com](https://pagespy.jikejishu.com) is a temporary service set up by us to allow everyone to experience and learn PageSpy online. We do not guarantee 24-hour availability, data security, or assume responsibility for any losses. We strongly recommend deploying privately or within an intranet after experiencing.
5656

5757
### Why Can Local Port 6752 Be Accessed, But Not When Deployed on a Server? #server-port
5858

@@ -67,19 +67,19 @@ This usually indicates that the SDK successfully created a room but failed to jo
6767

6868
### How Should nginx Be Configured During Deployment? #nginx
6969

70-
Here's an nginx configuration for https://test.jikejishu.com:
70+
Here's an nginx configuration for https://pagespy.jikejishu.com:
7171

7272
```nginx
7373
server {
7474
listen 443 ssl;
75-
server_name test.jikejishu.com;
75+
server_name pagespy.jikejishu.com;
7676
7777
if ($scheme != https) {
7878
rewrite ^(.*)$ https://$host$1 permanent;
7979
}
8080
81-
ssl_certificate /etc/letsencrypt/live/test.jikejishu.com/fullchain.pem;
82-
ssl_certificate_key /etc/letsencrypt/live/test.jikejishu.com/privkey.pem;
81+
ssl_certificate /etc/letsencrypt/live/pagespy.jikejishu.com/fullchain.pem;
82+
ssl_certificate_key /etc/letsencrypt/live/pagespy.jikejishu.com/privkey.pem;
8383
8484
location / {
8585
proxy_pass http://127.0.0.1:6752;
@@ -90,13 +90,13 @@ server {
9090
}
9191
9292
server {
93-
if ($host = test.jikejishu.com) {
93+
if ($host = pagespy.jikejishu.com) {
9494
return 301 https://$host$request_uri;
9595
}
9696
9797
listen 80;
9898
listen [::]:80;
99-
server_name test.jikejishu.com;
99+
server_name pagespy.jikejishu.com;
100100
return 404;
101101
}
102102
```
@@ -224,7 +224,7 @@ Refer to the following content:
224224
var script1 = document.createElement('script');
225225
script1.setAttribute('crossorigin', 'anonymous');
226226
// Replace the SDK URL with the actual project URL
227-
script1.src = 'https://test.jikejishu.com/page-spy/index.min.js';
227+
script1.src = 'https://pagespy.jikejishu.com/page-spy/index.min.js';
228228

229229
var script2 = document.createElement('script');
230230
script2.textContent = 'window.$pageSpy = new PageSpy();';

src/pages/Docs/md/faq.zh.mdx

+9-9
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ PageSpy 借助 CodeSandbox 平台发布了与当下流行的所有框架的接
5151
- **Nextjs**[CodeSandbox - PageSpy in Nextjs](https://codesandbox.io/p/sandbox/page-spy-with-nextjs-5htxv5)
5252
- **Nuxtjs**[CodeSandbox - PageSpy in Nuxtjs](https://codesandbox.io/p/sandbox/page-spy-with-nuxtjs-8znq22)
5353

54-
### test.jikejishu.com 是官方提供的域名吗?一直可以用吗?#test-domain
54+
### pagespy.jikejishu.com 是官方提供的域名吗?一直可以用吗?#test-domain
5555

56-
[https://test.jikejishu.com](https://test.jikejishu.com) 是我们为了让大家能够在线体验、学习 PageSpy 临时搭建的服务,**不保证 24 小时可用性、不保证数据安全、造成的损失自负**,强烈建议大家在体验后前往私服、内网中自行部署。
56+
[https://pagespy.jikejishu.com](https://pagespy.jikejishu.com) 是我们为了让大家能够在线体验、学习 PageSpy 临时搭建的服务,**不保证 24 小时可用性、不保证数据安全、造成的损失自负**,强烈建议大家在体验后前往私服、内网中自行部署。
5757

5858
### 为什么本地 6752 端口可以访问,部署到服务器上就不行了?#server-port
5959

@@ -68,19 +68,19 @@ PageSpy 借助 CodeSandbox 平台发布了与当下流行的所有框架的接
6868

6969
### 部署的时候 nginx 该怎么配置?#nginx
7070

71-
这里贴出 `https://test.jikejishu.com` 的 nginx 配置供大家参考:
71+
这里贴出 `https://pagespy.jikejishu.com` 的 nginx 配置供大家参考:
7272

7373
```nginx
7474
server {
7575
listen 443 ssl;
76-
server_name test.jikejishu.com;
76+
server_name pagespy.jikejishu.com;
7777
7878
if ($scheme != https) {
7979
rewrite ^(.*)$ https://$host$1 permanent;
8080
}
8181
82-
ssl_certificate /etc/letsencrypt/live/test.jikejishu.com/fullchain.pem;
83-
ssl_certificate_key /etc/letsencrypt/live/test.jikejishu.com/privkey.pem;
82+
ssl_certificate /etc/letsencrypt/live/pagespy.jikejishu.com/fullchain.pem;
83+
ssl_certificate_key /etc/letsencrypt/live/pagespy.jikejishu.com/privkey.pem;
8484
8585
location / {
8686
proxy_pass http://127.0.0.1:6752;
@@ -91,13 +91,13 @@ server {
9191
}
9292
9393
server {
94-
if ($host = test.jikejishu.com) {
94+
if ($host = pagespy.jikejishu.com) {
9595
return 301 https://$host$request_uri;
9696
}
9797
9898
listen 80;
9999
listen [::]:80;
100-
server_name test.jikejishu.com;
100+
server_name pagespy.jikejishu.com;
101101
return 404;
102102
}
103103
```
@@ -226,7 +226,7 @@ PageSpy 为大家准备了浏览器插件,插件提供了以下特性:
226226
var script1 = document.createElement('script');
227227
script1.setAttribute('crossorigin', 'anonymous');
228228
// 实际项目中请替换 SDK 的地址连接
229-
script1.src = 'https://test.jikejishu.com/page-spy/index.min.js';
229+
script1.src = 'https://pagespy.jikejishu.com/page-spy/index.min.js';
230230

231231
var script2 = document.createElement('script');
232232
script2.textContent = 'window.$pageSpy = new PageSpy();';

0 commit comments

Comments
 (0)