Docker 로 Nginx 배치 하기
docker pull nginx
docker images
3. 호스트 에 맵 에 사용 할 디 렉 터 리 만 들 기
mkdir -p ~/Documents/Kitematic/nginx/conf.d
mkdir -p ~/Documents/Kitematic/nginx/logs
4. ~ / Documents / Kitematic / nginx / config 디 렉 터 리 에서 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;
}
5. ~ / Documents / Kitematic / nginx / config / conf. d 에서 default. conf 파일 을 생 성 합 니 다. 내용 은 다음 과 같 습 니 다.
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/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 /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;
#}
}
6. 다음 명령 실행
docker run --name nginx -p 8100:80 \
-v ~/Documents/Kitematic/nginx/nginx.conf:/etc/nginx/nginx.conf \
-v ~/Documents/Kitematic/nginx/conf.d:/etc/nginx/conf.d \
-v ~/Documents/Kitematic/nginx/logs:/var/log/nginx \
-d f949e7d76d63
7. 브 라 우 저 에서 그것 을 찾 아 엽 니 다.http://localhost:8100nginx 환영 페이지 에 들 어 갑 니 다:
이 글 은 다 중 플랫폼 ArtiPub 에서 자동 으로 발 표 됩 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.