cd /usr/local/etcbrew 가 설치되어 있다면 brew install nginx brew services start nginx http://localhost:8080/ 접속 할 수 있게 된다. nginx 의 위치는 cd /usr/local/etc/nginx 에 있다. vi /usr/local/etc/nginx/nginx.conf 에서 설정 변경이 가능 하다. http { include /etc/nginx/mime.types; server_tokens off; client_max_body_size 32m; upstream app_server { server localhost:8081; keepalive 128; } endpoints { metadata_server; } server { # Ru..