ContOS docker nginx 설치

4391 단어 centosdockernginx
1. docker 의 설치
centos 아래 docker 설치
2. nginx 맵 경로 만 들 기
mkdir -p /docker/nginx/html && mkdir -p /docker/nginx/conf.d && mkdir -p /docker/nginx/conf &&  mkdir -p /docker/nginx/logs

3. 최신 미 러 추출
docker pull nginx

4. nginx 프로필 을 만 드 는 두 가지 방법
1. 수 동 으로 만 들 기
/ docker / nginx / conf 에서 nginx. conf 파일 을 만 들 고 / docker / nginx / conf. d 에서 default. conf 파일 을 만 듭 니 다.
2. 실행 중인 nginx 에서 복사 한 다음 에 수정 합 니 다. 작업 은 다음 과 같 습 니 다.
nginx 먼저 실행 하기:
docker run --name=nginx -p 80:80 -d nginx

프로필 복사:
docker cp nginx:/etc/nginx/nginx.conf /docker/nginx/conf
docker cp nginx:/etc/nginx/conf.d/default.conf /docker/nginx/conf.d

실행 중인 nginx 삭제:
docker rm nginx

5. 프로필 수정
nginx. conf 를 다음 으로 변경 합 니 다.
user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
	#      
    include /etc/nginx/conf.d/*.conf;
}

/ docker / nginx / conf. d 에서 default. conf 파일 을 만 들 고 뒤에 있 는 nginx 프로필 을 만 들 었 습 니 다. 여기 서 정적 자원 의 접근 을 테스트 하기 위해 my. conf 라 는 파일 을 만 들 었 습 니 다.default. conf 파일 의 내용 은 다음 과 같 습 니 다. 효 과 를 보 여주 기 위해 nginx 기본 환영 페이지 를 사용자 정의 환영 페이지 1. html (1. html 파일 을 / docker / nginx / html 아래 에 미리 놓 습 니 다)
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        #          nginx      
        index  1.html;
    }

    #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   /usr/share/nginx/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;
    #}
}

my. conf 파일 의 내용 은 다음 과 같 습 니 다. 여기 서 저 는 / docker / nginx / html 경로 에서 files 폴 더 를 만 들 었 습 니 다. 미디어 파일 을 저장 하여 브 라 우 저가 정적 파일 자원 에 접근 하 는 것 을 테스트 할 수 있 도록 합 니 다.
server {
    listen  80;
    server_name  localhost;
    access_log /var/log/nginx/tt.access.log main;
    error_log /var/log/nginx/tt.error.log error;
	location ~ .*\.(gif|jpg|jpeg|png)$ {
		expires 24h;  
		root /usr/share/nginx/html/files/;#                       files   
		proxy_store on;  
		proxy_temp_path    /usr/share/nginx/html/files/;#                     files   
		proxy_redirect     off;  
		proxy_set_header    Host 127.0.0.1;  
		client_max_body_size  10m;
		client_body_buffer_size 1280k;  
		proxy_connect_timeout  900;  
		proxy_send_timeout   900;  
		proxy_read_timeout   900;  
		proxy_buffer_size    40k;  
		proxy_buffers      40 320k;  
		proxy_busy_buffers_size 640k;  
		proxy_temp_file_write_size 640k;  
		if ( !-e $request_filename)  
		  {  
			 proxy_pass http://127.0.0.1;#  80    
		  } 
    } 
}

6. 용기 실행
docker run -d -p 80:80 --name=nginx --restart=always -v /docker/nginx/html:/usr/share/nginx/html -v /docker/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro -v /docker/nginx/conf.d:/etc/nginx/conf.d -v /docker/nginx/logs:/var/log/nginx nginx

7. 브 라 우 저 80 포트 방문 효과 보기

좋은 웹페이지 즐겨찾기