环境说明 ZLMediaKit编译需要的软件 visual studio[https://visualstudio.microsoft.com/zh-hans/downloa...
博主,请教一个问题。我是需要nginx代理到senty,实现浏览器通过https://192.168.201.3代理到http://192.168.201.3:9000,我的配置如下
```
server {
listen 443 ssl;
server_name 192.169.210.3;
location / {
proxy_pass http://localhost:9000;
}
}
```
然后dns配置如下
```
dsn: 'https://0b06bb09522c406db87765fc44e0f4e6@192.168.201.3/2',
```
这样代理的话,无论访问它的后台管理系统,还是上传报错接口都是OK的,但是我们的location不单单是一个,因此需要https://192.168.201.3/sentry代理到http://192.168.201.3:9000, 我的配置是
```
server {
listen 443 ssl;
server_name 192.169.210.3;
location ~/sentry {
proxy_pass http://localhost:9000;
}
}
```
dsn
```
dsn: 'https://0b06bb09522c406db87765fc44e0f4e6@192.168.201.3/sentry/2',
```
虽然跳转到登录是正确的,但是返回其他页面有些出错404,特别是上传报错接口403
```
CSRF Verification Failed
A required security token was not found or was invalid.
If you're continually seeing this issue, try the following:
Clear cookies (at least for Sentry's domain).
Reload the page you're trying to submit (don't re-submit data).
Re-enter the information, and submit the form again.
Read more about CSRF on Wikipedia.
```
请问有什么办法吗
基于Sentry搭建一个前端异常监控系统背景 虽然在我们的项目上线前会有很多的测试流程,但是测试流程肯定无法保证 100%覆盖所有操作场景,在用户的使用过程中仍会有一些问题暴露出来。但当线上用户出现问题,我们需要收...
准备相关软件 jenkins:中文网[https://www.jenkins.io/zh/download/] 英文网[https://www.jenkins.io/dow...
到这里下载jenkins.war 在jenkins中Manage Jenkins->System Information->executable-war得到地址为 把下载的文...
案例一父组件parent.vue 子组件child.vue 上面按照这里的解析,子组件的html中的{{childData}}的值会随着父组件的值而改变,但是created里...