2021-05-13 10:56:04 +08:00
|
|
|
#这个文件给docker用的
|
|
|
|
#user nobody;
|
2022-06-16 14:08:46 +08:00
|
|
|
worker_processes 1;
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
|
|
#error_log logs/error.log;
|
|
|
|
#error_log logs/error.log notice;
|
|
|
|
#error_log logs/error.log info;
|
|
|
|
|
|
|
|
#pid logs/nginx.pid;
|
|
|
|
events {
|
2022-06-16 14:08:46 +08:00
|
|
|
worker_connections 1024;
|
2021-05-13 10:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
http {
|
2022-06-16 14:08:46 +08:00
|
|
|
include mime.types;
|
|
|
|
default_type application/octet-stream;
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
|
|
#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 logs/access.log main;
|
2022-06-16 14:08:46 +08:00
|
|
|
sendfile on;
|
2021-05-13 10:56:04 +08:00
|
|
|
#tcp_nopush on;
|
|
|
|
|
|
|
|
#keepalive_timeout 0;
|
2022-06-16 14:08:46 +08:00
|
|
|
keepalive_timeout 65;
|
2021-05-13 10:56:04 +08:00
|
|
|
client_max_body_size 10m;
|
|
|
|
gzip on;
|
2022-06-16 14:08:46 +08:00
|
|
|
gzip_min_length 5k;
|
|
|
|
gzip_buffers 4 16k;
|
2021-05-13 10:56:04 +08:00
|
|
|
gzip_http_version 1.0;
|
|
|
|
gzip_comp_level 4;
|
2022-06-16 14:08:46 +08:00
|
|
|
gzip_types text/plain application/x-javascript application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
|
2021-05-13 10:56:04 +08:00
|
|
|
gzip_vary on;
|
|
|
|
|
|
|
|
server {
|
2022-06-16 14:08:46 +08:00
|
|
|
listen 10002;
|
2021-05-13 10:56:04 +08:00
|
|
|
|
|
|
|
location / {
|
|
|
|
root /app;
|
|
|
|
try_files $uri $uri/ /index.html $uri/ =404;
|
2022-06-16 14:08:46 +08:00
|
|
|
index index.html index.htm;
|
2021-05-13 10:56:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|