| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- user root;
- worker_processes auto;
- pid /run/nginx.pid;
- include /etc/nginx/modules-enabled/*.conf;
- events {
- worker_connections 768;
- }
- http {
- client_max_body_size 50M;
- sendfile on;
- tcp_nopush on;
- types_hash_max_size 2048;
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
- ssl_protocols TLSv1.2 TLSv1.3;
- ssl_prefer_server_ciphers on;
- gzip on;
- gzip_types text/plain application/json application/javascript text/css;
- access_log /var/log/nginx/access.log;
- error_log /var/log/nginx/error.log;
- include /etc/nginx/conf.d/*.conf;
- include /etc/nginx/sites-enabled/*;
- server {
- listen 80 default_server;
- # server_name 不填表示匹配所有未被其他 server 匹配的请求
- root /usr/share/nginx/html;
- index index.html;
- location / {
- try_files $uri $uri/ /index.html;
- }
- # 设置.html文件不缓存
- location ~* \.html$ {
- add_header Cache-Control "no-cache, no-store, must-revalidate";
- add_header Pragma "no-cache";
- add_header Expires "0";
- }
- }
- }
|