Search
Duplicate

Nginx

생성일
2021/05/11 16:14
태그

Setup

apt install nginx
CSS
복사

Setting

세팅파일은 sudo find / -name nginx.conf 을 통해서 찾을 수 있음
& nano /etc/nginx/sites-available/default ... & service nginx reload
Bash
복사
//프록시 server { listen 80; listen [::]:80; server_name 도메인; location / { proxy_pass http://localhost:3000/; } }
JSON
복사
//SPA (React, etc..) // 수정 필요 server { listen 80; listen [::]:80; server_name 도메인; ssl off; root /var/www/위치; index index.html; location / { try_files $uri $uri/ =404; } }
SQL
복사
server { listen 80; listen [::]:80; server_name 도메인; ssl off; root /var/www/위치; index index.html; location / { try_files $uri $uri/ =404; } }
SQL
복사