nginx: [emerg] bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way f

646 단어 nginx
nginx 를 다운로드 한 후 cmd 에서 nginx. exe 파일 을 실행 할 때 오류 가 발생 했 습 니 다 nginx: [emerg] bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions). 80 포트 가 점용 되 었 습 니 다. nginx 의 프로필 conf 파일 만 찾 으 면 nginx. conf 를 열 고 안에 있 는 것 을
server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

listen 80 ;사용 하지 않 은 포트 로 바 꾸 면 됩 니 다. 그리고 cmd 에서 nginx. exe 파일 을 실행 하고 다시 시작 합 니 다.

좋은 웹페이지 즐겨찾기