微海报调用表单


image.png

nginx配置

  1. server {
  2. listen 80;
  3. server_name form.126net.cn testform.126net.com;
  4. location /{
  5. #if ( $http_origin ~ *.mxs223.com ){
  6. #set allow_domain
  7. #}
  8. #add_header Access-Control-Allow-Origin *;
  9. add_header Access-Control-Allow-Origin "$http_origin";
  10. #add_header Access-Control-Allow-Origin "$http_origin";
  11. #用来指定本次预检请求的有效期,单位为秒,,在此期间不用发出另一条预检请求
  12. add_header Access-Control-Max-Age 3600;
  13. #ajax请求要开启 origin 不可设置为*
  14. add_header Access-Control-Allow-Credentials 'true';
  15. add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
  16. add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
  17. #OPTIONS 用来检查服务器的性能。
  18. #例如:AJAX进行跨域请求时的预检,需要向另外一个域名的资源发送一个HTTP OPTIONS请求头,
  19. #用以判断实际发送的请求是否安全。
  20. if ($request_method = 'OPTIONS') {
  21. #204 2xx(成功)请求执行成功,但是没有数据,浏览器不用刷新页面.也不用导向新的页面
  22. return 204;
  23. }
  24. proxy_set_header Host $host;
  25. proxy_pass http://10.10.10.100:81/;
  26. }
  27. }