2018-07-10: UART 정보 추가
2017-07-24: exFAT 추가
{:.right-history}
Odroid C2 - Install Armbian
{: width=”600”}
2018-07-10: UART 정보 추가
2017-07-24: exFAT 추가
{:.right-history}
{: width=”600”}
nginx를 사용해서 일반 웹 서비스와 node.js 애플리케이션을 연동하는 방법을 살펴보자.
Nginx 설치가 되었다고 가정한다.
/etc/nginx 밑에 가상 호스트 환경에 맞게 파일을 구성한다.
/etc/nginx/site-available/myhome.conf
1 | server { |
http 에 대한 구성
1 | http { |
nginx 구성을 재시작한다
1 | $ cd /etc/nginx/sites-enabled |
nodejs 를 연동하기 위한 Proxy 구성을 추가한다.
1 | server { |
Nginx를 이용해 SSL 제공을 해주자.
1 | $ sudo mkdir /etc/nginx/ssl |
/etc/nginx/site-available/yoursite.com
1 | server { |
http://serverfault.com/questions/250476/how-to-force-or-redirect-to-ssl-in-nginx
1 | server { |
The best way as it described in the official how-to is by using the return directive:
1 | server { |
1 | $ sudo ln -s /etc/nginx/sites-available/yourOdooSite.com /etc/nginx/sites-enabled/yourOdooSite.com |
CORS(Cross-Origin resource sharing)은 웹 페이지 도메인 밖의 다른 도메인에서 제한된 웹 페이지를 자원을 허용하도록 하는 메커니즘이다.[^2]
You need to enable CORS on the server (localhost:8080). Check out this site: http://enable-cors.org/
All you need to do is add an HTTP header to the server:
1 | Access-Control-Allow-Origin: http://localhost:3000 |
전체적으로 열어 주려
1 | Access-Control-Allow-Origin: * |
다음 같이 nginx 설정을 사용한다.
1 | et $cors ''; |
Nginx를 앞단에 두고 Proxy를 이용해 nodeJS, Djang, Angular 등의 서비스를 이용할 때, nginx나 backend 둘 중 한 곳에서 CORS를 활성화 해주면 된다.
Nginx에서 CORS를 허용하려면 아래 설정을 사용할 수 있다. [^1]
1 | location / { |
이와 비슷한 방법으로
https://gist.github.com/m4ttbrock/7337183
https://enable-cors.org/server_expressjs.html
if your app is created with simple node.js set it in your response headers like
1 | var http = require('http'); |
if your app is created with express framework
use a CORS middleware like
1 | var allowCrossDomain = function(req, res, next) { |
cors 모듈을 이용할 수 있다.
https://github.com/expressjs/cors
1 | var cors = require("cors"); |
1 | app.get("/products/:id", cors(), function (req, res, next) { |
1 | var corsOptions = { |
[^1]: CORS on Nginx
[^2]: Cross-origin resource sharing