
環境說明 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里...