Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 809 Bytes

nginx-expression.md

File metadata and controls

56 lines (47 loc) · 809 Bytes
title date tags categories
nginx에서 자주 사용하는 문법
2020-02-25 19:34:00 -0800
nginx
개발에 도움이 되는 글

기본적인 라우팅

# Common Routing
server {
    listen 80;
    listen [::]:80;
    server_name _;

    location / {
    	root /home/username/public_html/;
    	index index.html;
    	try_files $uri $uri/ =404;
    }
}

리액트 라우팅

# React Routing
server {
    listen 80;
    listen [::]:80;
    server_name _;

    location / {
    	root /home/username/public_html/;
    	index index.html;
    	try_files $uri $uri/ /index.html;
    }
}

리버스 프록시

# Reverse Proxy
server {
    listen 80;
    listen [::]:80;
    server_name _;

    location / {
        proxy_pass http://localhost:3000;
    }
}