- nginx 下载链接:
- centos7 镜像下载链接:
- 也可以在服务器上面:wget
1.创建基础目录(已经有的话 , 请跳过)
# 用来存储我们下载好的一些文件或者软件mkdir -p /home/service# 用来存储配置文件mkdir -p /home/config# 用来存储日志mkdir -p /home/logs# sh脚本mkdir -p /home/sh
安装wget:yum install wget2. 下载解压nginx(复制全部 , 粘贴运行就好了)
# 没有wget 的话 , yum install wgetcd /home/servicewget tar -xzvf nginx-1.18.0.tar.gzcd nginx-1.18.0
3. 执行安装(复制全部 , 粘贴运行就好了)
yum -y install gcc pcre pcre-devel zlib openssl openssl-develcd /home/service/nginx-1.18.0./configure --prefix=/home/service/nginx --with-http_ssl_modulemake install
4. 设置nginx自启文件(复制全部 , 粘贴运行就好了)
mkdir -p /home/config/nginxcat <<'EOF'> /home/config/nginx/nginx.service[Unit]Description=nginxAfter=network.target[Service]Type=forkingExecStart=/home/service/nginx/sbin/nginx -c /home/service/nginx/conf/nginx.confExecReload=/home/service/nginx/sbin/nginx restartExecStop=/home/service/nginx/sbin/nginxstopPrivateTmp=true[Install]WantedBy=multi-user.targetEOFcp /home/config/nginx/nginx.service /lib/systemd/system/nginx.service
5. 编写nginx配置(复制全部 , 粘贴运行就好了)
mkdir -p /home/logs/nginxmkdir -p /home/config/nginx/mkdir -p /home/config/nginx/conf.dcat <<'EOF'> /home/service/nginx/conf/nginx.conf#user nginx nginx;#user root;worker_processesauto;error_log/home/logs/nginx/error.log warn;#pid/var/run/nginx.pid;worker_rlimit_nofile 65535;events {use epoll;worker_connections65535;}http {includemime.types;default_typeapplication/octet-stream;fastcgi_intercept_errors on;log_formatmain'$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log/home/logs/nginx/access.logmain;limit_conn_zone $binary_remote_addr zone=conn:10m;limit_req_zone $binary_remote_addr zone=allips:10m rate=50r/s;server_names_hash_bucket_size 128;client_header_buffer_size 128k;large_client_header_buffers 4 128k;client_max_body_size 20m;client_body_timeout 120;server_tokens off;sendfileon;tcp_nopushon;keepalive_timeout65;fastcgi_connect_timeout 300;fastcgi_send_timeout 300;fastcgi_read_timeout 300;fastcgi_buffer_size 64k;fastcgi_buffers 4 64k;fastcgi_busy_buffers_size 128k;fastcgi_temp_file_write_size 128k;gzip on;gzip_min_length1k;gzip_buffers4 16k;gzip_comp_level 2;gzip_vary on;gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;include /home/config/nginx/conf.d/*.conf;}EOF# 软链ln -s /home/service/nginx/conf/nginx.conf /home/config/nginx/
6. 编写80监听转发配置(复制全部 , 粘贴运行就好了)
cat <<'EOF'> /home/config/nginx/conf.d/nginx.conf#此配置文件为websocketmap $http_upgrade $connection_upgrade {default upgrade;'' close;}#upstream dist {#server127.0.0.1:8123;#}#80端口转向443#server {#listen 80;#server_name 域名.com,www.域名.com;#return 301 https://www.域名.com$request_uri;#}#非www重定向www#server { #listen 443; #server_name 域名.com; #return 301 https://www.域名.com$request_uri;#}server {listen80;#listen443 default_server ssl;#server_namewww.域名.com;server_namelocalhost;root /home/service/nginx/html;index index.html index.htm;#location ~*\.(gif|jpg|jpeg|png|bmp|swf|css|js|html)$ {#root /home/service/nginx/html;#}#下载目录#location /download {#rewrite ^/download/(.*)$ /$1 break;#add_headerContent-Type"application/octet-stream;charset=utf-8";#add_headerContent-Disposition "attachment; filename*=utf-8'zh_cn'$arg_n";#root /home/www/html/downloadF;#autoindex on;#autoindex_exact_size off;#}#配置https#ssl_certificate /home/config/nginx/sslfile/1_www.域名.com_bundle.crt;#ssl_certificate_key /home/config/nginx/sslfile/2_www.域名.com.key;#ssl_protocols TLSv1 TLSv1.1 TLSv1.2;#ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;#ssl_prefer_server_ciphers on;#ssl_session_cacheshared:SSL:10m;#ssl_session_timeout 10m;#ssl_buffer_size 1400;location /api {proxy_http_version 1.1;proxy_set_header Connection "";proxy_connect_timeout 60s;proxy_read_timeout 60s;proxy_send_timeout 60s;proxy_buffer_size 512k;proxy_bufferingon;proxy_buffers8 512k;proxy_busy_buffers_size 1024k;proxy_max_temp_file_size 100M;proxy_pass ; #http://distproxy_redirectoff;proxy_set_headerHost $host;proxy_set_headerX-real-ip $remote_addr;proxy_set_headerX-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection 'upgrade';proxy_set_header Origin "";#限制TCP并发连接数100/slimit_conn conn 100;}}EOFsystemctl enable nginx.servicesystemctl start nginx.serviceservice nginx status
推荐阅读
-
民众发布|【中山民众新时代文明实践】今天你参与垃圾分类了吗?跟着志愿者学一学
-
胖哥一叶知秋:一个补丁却费银三千两,到底是节俭还是浪费?,道光皇帝十分抠门
-
鬼娃恰吉|《鬼娃恰吉》获得第三季续订,恐怖娃娃Chucky的恐惧之旅继续展开
-
经络|经络不通的6种反应:这些部位“硬”百病缠身!趁着夏天,让它们软下来!
-
蠢萌小萝莉|叶一茜为老公庆生,寿星穿一件绿色T恤青春四射,卡通照俏皮可爱
-
-
-
-
『Python』为什么迁移至 Python 3 这么难?
-
大浩爱说新鲜事儿▲1公里“烧”多少钱?一般人真开不起!,价值2000万的劳斯莱斯
-
-
贴吧游戏精选|暗黑破坏神第一名 第三名至今还有人玩,90后玩过的单机游戏大盘点
-
此时进场还有机会吗?各大国际知名投行对A股的看法汇总
-
-
物业|南都物业:2020年上半年净利润约6800万元,同比增加21.34%
-
-
-
-
-
家常菜|营养美味的家常菜,超级下饭开胃,低脂低热量,零负担不长胖