Mac 설정 Nginx

1602 단어 Nginx
1. nginx 설치
가장 간단 하고 추천 하 는 방법 은 brew 명령 으로 설치 하 는 것 입 니 다. 전 제 는 mac 가 brew 를 설치 하 는 것 입 니 다.
brew install nginx
2. nginx 시작
nginx
3. 홈 페이지 에 접근 하기 전에 nginx 설정 파일 을 알 아 보 겠 습 니 다 (nginx. conf):
cat /usr/local/etc/nginx/nginx.conf
디 스 플레이 코드: \ # user nobody;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;

sendfile        on;
#tcp_nopush     on;

#keepalive_timeout  0;
keepalive_timeout  65;

#gzip  on;

server {
    listen       8080; #  8080  ,    ,      
    server_name  localhost; #     localhost  

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

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

   .....(  1000 )

4. 프로필 을 통 해 기본 사이트 루트 디 렉 터 리 는 html (즉 / usr / local / var / www) 이 고 기본 색인 파일 은 index. html 와 index. htm 인 것 을 볼 수 있 습 니 다. 이 유 를 찾 을 수 있 습 니 다. 원래 루트 디 렉 터 리 에 첫 페이지 색인 파일 이 없 으 면 수 동 으로 만 듭 니 다.
cd / usr / local / var / www / / www 디 렉 터 리 에 들 어가 touch index. html / 새로운 index. html 파일 vim index. html / 편집 파일 을 만 듭 니 다.

좋은 웹페이지 즐겨찾기