#포트추가
Explore tagged Tumblr posts
mite-rva · 11 months ago
Text
Nginx 포트 여러 개 사용하기 (2개!)
Nginx는 기본적으로 포트 3000을 쓰는데 (예제 학습 전까진 아마 8080)
나는 9223을 써보고 싶었다.
하지만 완벽하게 실패하였다. (읭)
이유는 기본 설정이 3000만 listen 하도록 되어있기 때문.
(참고 링크: https://velog.io/@dong3789/nginx-%ED%8F%AC%ED%8A%B8%EB%B3%84-%EB%8F%84%EB%A9%94%EC%9D%B8%EC%9D%84-%EB%8B%AC%EC%95%84%EB%B3%B4%EC%9E%90)
sudo nano /opt/homebrew/etc/nginx/nginx.conf
해서 (권한 있으면 걍 고치거나)
아래처럼 하면 된다 ( 포트 추가 )
Tumblr media
참고로 M2 Mac 기준.
직접 쓰다가 죽는줄 알았네. 3시라니 흑흑.
그래도 뿌듯하다.
웹 페이지마다 어떤 건 3000만 쓰고, 어떤 건 9223만 쓰도록도 해보고 싶은데 그건 다음에 하고.
보기에 안 좋아도 코드 그대로 붙이면 아래랑 같다.
server { listen 9223; server_name sena.com; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } #error_page 404 /404.html; #redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:9223 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
이게 뭐야
0 notes