Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Docke deploys nginx and configures

2025-03-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the knowledge of "how to deploy and configure nginx in Docke". Many people will encounter this dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Download the nginx image in docker

Docker pull nginx

Create a hanging directory in the host

Mkdir-p / data/nginx/ {conf,conf.d,html,log}

Third, create a new configuration file under the directory

Vim / data/nginx/conf/nginx.conf

User www-data;worker_processes auto;pid / run/nginx.pid;events {worker_connections 768; # multi_accept on;} http {# # Basic Settings # # sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off # server_names_hash_bucket_size 64; # server_name_in_redirect off; include / etc/nginx/mime.types; default_type application/octet-stream; # SSL Settings # # ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE ssl_prefer_server_ciphers on # Logging Settings # # access_log / var/log/nginx/access.log; error_log / var/log/nginx/error.log; # Gzip Settings # # gzip on; gzip_disable "msie6"; # gzip_vary on; # gzip_proxied any; # gzip_comp_level 6 # gzip_buffers 168k; # gzip_http_version 1.1; # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; # Virtual Host Configs # # include / etc/nginx/conf.d/*.conf; include / etc/nginx/sites-enabled/*; server {listen 80 Server_name localhost; # your serverName root / usr/share/nginx/html; index index.html;}}

4. Map the nginx container to the host port 80

Docker run-- name my_nginx-d-p 80:80-v / data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf # the colon is hung in the directory to the host, followed by the directory in the container-v / data/nginx/log:/var/log/nginx-v / data/nginx/html:/usr/share/nginx/htmlnginx

Write a test page locally / data/nginx/html

Echo "test" > / data/nginx/html/index.html

That's all for "how Docke deploys and configures nginx". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report