nginx 지식 잡기

4590 단어 nginx
Mac 에서 nginx 설정 파일 의 기본 경로:
/usr/local/etc/nginx/nginx.conf

위 경로 의 nginx 설정 파일 을 찾 아서 엽 니 다:

user lizuncong owner;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;
    fastcgi_intercept_errors on;

    proxy_intercept_errors on;
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    #include sites-enabled/*.conf;
    server {
        listen       8086;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

         location / {
            root   html;
            index  index.html index.htm;
         }
	
	# add by lzc 
	# location / {
	#     proxy_pass http://localhost:8001; 
	# }
	
	# add by lzc
	location /api/ {
	    proxy_pass http://localhost:8002;
	    proxy_set_header Host $host;
	}

        # 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:80
        #
        #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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

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


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    # include /usr/local/etc/nginx/conf.d/*.conf;
     include /usr/local/etc/nginx/sites-enabled/*;
     include /Users/lizuncong/Documents/nginx-service/index.conf;
   # include sites-enabled/690-back;

}

첫 번 째 줄 을 수정 하고 현재 사용자 user lizuncong owner 를 추가 합 니 다.
프 록 시 설정, 예 를 들 어 / 경로 의 서 비 스 를 모두 전송 하려 면http://localhost:8001서비스 에서 / api / 경로 의 인 터 페 이 스 를 모두 전송 합 니 다.http://localhost:8002서비스 에서 이렇게 설정 할 수 있 습 니 다:
	# add by lzc 
	location / {
	    proxy_pass http://localhost:8001; 
	}
	
	# add by lzc
	location /api/ {
	    proxy_pass http://localhost:8002;
	    proxy_set_header Host $host;
	}

설정 파일 에 서 는 외부 index. conf 설정 을 도입 하 는 등 다른 설정 파일 도 도입 할 수 있 습 니 다.
     include /Users/lizuncong/Documents/nginx-service/index.conf;

index. conf 설정 은 다음 과 같 습 니 다.
server
{
  charset utf-8;
  listen 8085;
  server_name http_host;
  root /Users/lizuncong/Documents/nginx-service/; 
  autoindex on;
  add_header Cache-Control "no-cache, must-revalidate"; 
  location / {
    add_header Access-Control-Allow-Origin *;
  }
}

프로필 형식 이 올 바른 지 테스트 하기:
nginx -t

nginx 를 시작 하면 명령 행 에서 nginx 를 직접 실행 하면 시작 할 수 있 습 니 다:
nginx

다시 시작 nginx
nginx -s reload

정지 nginx
nginx -s stop

이 명령 들 은 mac 에 sudo 권한 을 추가 해 야 할 수도 있 습 니 다.
 

좋은 웹페이지 즐겨찾기