616f059f1e
2. 修复交叉评查的任务中的文档列表的历史文档的查看跳转路径。 3. 修复评查点新增中评查点类型只能显示当前文档类型绑定的这几个一级分组。评查点类型=一级分组。 4. 修复文档列表关于pdf的下载失败的问题。
28 lines
732 B
Nginx Configuration File
28 lines
732 B
Nginx Configuration File
# user nginx;
|
|
# worker_processes auto;
|
|
# error_log /var/log/nginx/error.log notice;
|
|
# 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;
|
|
|
|
# # 包含conf.d目录中的配置文件
|
|
# include /etc/nginx/conf.d/*.conf;
|
|
# } |