nginx文件下载

    技术2025-09-30  35

    版本

    cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) uname -r 3.10.0-327.el7.x86_64

    配置yum源

    cat >> /etc/yum.repos.d/CentOS-Base.repo <<EOF [nginx] name=nginx_repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 EOF yum clean all yum makecache

    安装nginx

    yum install -y nginx

    修改配置文件

    #备份配置文件 cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.bak

    修改主配置文件

    /etc/nginx/nginx.conf

    user nginx; worker_processes auto; 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; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; #gzip on; include /etc/nginx/conf.d/*.conf; }

    修改default.conf

    /etc/nginx/conf.d/default.conf

    server { listen 80 default_server; listen [::]:80 default_server; server_name _; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html/download; autoindex on; autoindex_exact_size off; autoindex_localtime on; default_type 'application/octet-stream'; } error_page 404 /404.html; location = /40x.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; #} } #创建下载文件目录 mkdir -p /usr/share/nginx/html/download #上传文件 echo "123456" > a.txt #修改权限 chmod 755 *

    启动nginx

    #检查nginx语法错误 nginx -t systemctl start nginx #查看端口 ss -ntlu |grep 80

    浏览器访问nginx地址

    Processed: 0.014, SQL: 9