docker 배치 Nginx
docker pull nginx:1.11.13
docker run -it -p 80:80 --name mynginx -v $PWD/www:/usr/share/nginx/html -v $PWD/logs:/var/log/nginx/log -v $PWD/conf/default.conf:/etc/nginx/conf.d/default.conf -d nginx
설명:
- v $pwd / www: / www, 현재 경로 의 ww 디 렉 터 리 를 / ww 로 설정 하여 server 설정 경로 와 대응 합 니 다.
- v $PWD / conf / default. conf: / etc / nginx / conf. d / default. conf, Nginx 프로필 의 로 컬 경로, docker 용기 에 비 친 nginx 설정 경로
- v 매개 변수, 콜론 전 은 홈 호스트 디 렉 터 리 이 며, 절대 경로 이 어야 합 니 다. 콜론 후 미 러 에 마 운 트 된 경로 입 니 다.
프로필: default. conf
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/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;
#}
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
첫 번째 Docker for Mac참고 , 나는 옆에 있는 Mac에 Docker를 설치하고 컨테이너를 세워 보고 싶다. Docker Hub를 처음 사용할 때는 계정을 만들어야 합니다. Docker.dmg을 실행하면 Docker가 설치됩니다. Dock...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.