>  기사  >  백엔드 개발  >  nginx 도메인 간 설정 nginx apache nginx php nginx 다시 쓰기

nginx 도메인 간 설정 nginx apache nginx php nginx 다시 쓰기

PHP中文网
PHP中文网원래의
2017-04-01 16:50:321331검색
  • 프로젝트 작업 시 프론트엔드와 백엔드가 분리된 구조적 디자인을 채택하고 나머지 스타일의 http인터페이스를 디자인했습니다. 백엔드에서는 백엔드 서비스를 모두 충족해야 합니다. 호출은 프런트 엔드에서 직접 Ajax 호출을 사용한다는 요구 사항도 충족해야 하므로 백엔드에서 spring mvc 구조를 사용하므로 도메인 간 문제가 발생합니다. HTTP 메서드는 get, post, put, delete, 옵션 등을 지원합니다. 왜냐하면 post를 호출할 때 프런트엔드 http가 먼저 서버에 옵션을 사용한 다음 204 이후에 요청 데이터를 제출하기 때문입니다. nginx 수준에서 조정하는 것 외에도 spring web.xml도 설정해야 합니다. 아래에서 이 솔루션은 서버 측에서 필터 등을 추가할 필요가 없습니다. 얻을 수 있는 버전은 다음과 같습니다. :

  • spring web.xml

<servlet>
<servlet-name>root</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext-web.xml</param-value>
</init-param><init-param><param-name>dispatchOptionsRequest</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet><servlet-mapping>
<servlet-name>root</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
  • nginx.conf는 어떤 곳에서는 약간 장황합니다

location ~/api/* {
            dav_methods PUT DELETE;
            if ($request_method = &#39;OPTIONS&#39;) {
                add_header &#39;Access-Control-Allow-Origin&#39; &#39;$http_origin&#39;;
                add_header &#39;Access-Control-Allow-Methods&#39; &#39;GET, POST,PUT,DELETE, OPTIONS&#39;;
                add_header &#39;Access-Control-Allow-Headers&#39; &#39;Authorization,DNT,X-CustomHeader,Keep-Alive,
                User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type&#39;;
                add_header &#39;Access-Control-Max-Age&#39; 3600;
                add_header &#39;Content-Type&#39; &#39;text/plain charset=UTF-8&#39;;
                add_header &#39;Content-Length&#39; 0;
                return 204;
            }
            if ($request_method = &#39;POST&#39;) {
                add_header &#39;Access-Control-Allow-Origin&#39; &#39;$http_origin&#39;;
                add_header &#39;Access-Control-Allow-Methods&#39; &#39;GET, POST,PUT,DELETE, OPTIONS&#39;;
                add_header &#39;Access-Control-Allow-Headers&#39; &#39;Authorization,DNT,X-CustomHeader,Keep-Alive,
                User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type&#39;;
            }
            if ($request_method = &#39;GET&#39;) {
                add_header &#39;Access-Control-Allow-Origin&#39; &#39;$http_origin&#39;;
                add_header &#39;Access-Control-Allow-Methods&#39; &#39;GET, POST,DELETE,PUT, OPTIONS&#39;;
                add_header &#39;Access-Control-Allow-Headers&#39; &#39;Authorization,DNT,X-CustomHeader,Keep-Alive,
                User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type&#39;;
            }
      if ($request_method = &#39;PUT&#39;) {
                add_header &#39;Access-Control-Allow-Origin&#39; &#39;$http_origin&#39;;
                add_header &#39;Access-Control-Allow-Methods&#39; &#39;GET, POST,PUT,DELETE, OPTIONS&#39;;
                add_header &#39;Access-Control-Allow-Headers&#39; &#39;Authorization,DNT,X-CustomHeader,Keep-Alive,
                User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type&#39;;
            }
            if ($request_method = &#39;DELETE&#39;) {
                add_header &#39;Access-Control-Allow-Origin&#39; &#39;$http_origin&#39;;
                add_header &#39;Access-Control-Allow-Methods&#39; &#39;GET, POST,DELETE,PUT, OPTIONS&#39;;
                add_header &#39;Access-Control-Allow-Headers&#39; &#39;Authorization,DNT,X-CustomHeader,Keep-Alive,
                User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type&#39;;
            }
            root /opt/www/web/;
            index index.jsp;
            proxy_pass <a rel="nofollow" href="http://localhost.html" target="_blank">
            <a rel="nofollow" href="http://localhost" target="_blank">http://localhost</a></a>:8089;
            include /opt/conf/nginx/proxy.conf;
        }

위 내용은 nginx 크로스 도메인 설정 내용입니다 nginx apache nginx php nginx rewrite, more 관련 내용은 PHP 중국어 홈페이지(www.php.php.php)를 참고해주세요. CN)!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.