1. 程式人生 > >nginx部署文件服務器

nginx部署文件服務器

node clu bsp main time 文件大小 索引 服務器 ica

1、安裝nginx

yum install -y nginx

2、配置nginx

主配置文件:

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
worker_connections 1024;
}

http {
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;

include /etc/nginx/mime.types;
default_type application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;

}

副配置文件#####

server {

listen 81;
server_name 192.168.36.107;
charset utf-8;
root /opt;
location / {
autoindex on;#索引
autoindex_exact_size on;#顯示文件大小
autoindex_localtime on;#顯示文件時間

}

}

3、測試nginx

[[email protected] conf.d]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

4、啟動nginx

systemctl reload nginx

5、測試下載

技術分享

技術分享

nginx部署文件服務器