firer1946

Results 6 comments of firer1946

request.send() 里边 调用了 _build_response()自己

如下,忘记是参考的哪里了 ```nginx server{ listen 80; server_name domain.com; index index.php index.html index.htm; add_header Strict-Transport-Security "max-age=31536000; preload"; client_max_body_size 20m; location / { proxy_pass http://127.0.0.1:8888; # 转发规则 proxy_set_header Host $host; # 修改转发请求头,让8080端口的应用可以受到真实的请求 proxy_set_header...

> > 如下,忘记是参考的哪里了 > > ```nginx > > server{ > > listen 80; > > server_name domain.com; > > index index.php index.html index.htm; > > add_header Strict-Transport-Security "max-age=31536000; preload"; >...

> > [#8 (comment)](https://github.com/vicalloy/outline-docker-compose/issues/8#issuecomment-1144387895) 写错了,也是8888 > > scripts/config.sh URL改为了 > > ``` > URL=http://xxx.xxx.com > ``` > > Nginx > > ``` > server{ > listen 80; > server_name xxx.xxx.com;...

> I guess this is due to the fact that postgreSQL's Chinese text segmentation system is not very perfect. > > you can replace server/models/Document.js:601 > > ``` > //...

I dive into soruce code and found some way to add proxy, just need add 2 line in source code # 1. get into docker container shell ` docker exec...