nginx_template.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "nginxConf": {
  3. "user": "nginx",
  4. "worker_processes": "auto",
  5. "error_log": "/var/log/nginx/error.log notice",
  6. "pid": "/var/run/nginx.pid",
  7. "events.worker_connections": 1024,
  8. "http.include": "/etc/nginx/mime.types",
  9. "http.default_type": "application/octet-stream",
  10. "http.log_format": [
  11. {
  12. "key": "http.log_formatXK1BCq0XKQCMEuV",
  13. "name": "main",
  14. "content": "'$remote_addr - $remote_user [$time_local] \"$request\" '\n '$status $body_bytes_sent \"$http_referer\" '\n '\"$http_user_agent\" \"$http_x_forwarded_for\"'"
  15. }
  16. ],
  17. "http.access_log": {
  18. "key": "http.access_logqwY8npz3ypNjgIA",
  19. "name": "main",
  20. "path": "/var/log/nginx/access.log"
  21. },
  22. "http.sendfile": "off",
  23. "http.tcp_nopush": "off",
  24. "http.keepalive_timeout": 0,
  25. "http.gzip": "off",
  26. "stream": true,
  27. "stream.log_format": [
  28. {
  29. "key": "stream.log_format8avSYRKrTjzgzcF",
  30. "name": "tcp_format",
  31. "content": "'$time_local|$remote_addr|$protocol|$status|$bytes_sent|$bytes_received|$session_time|$upstream_addr|$upstream_bytes_sent|$upstream_bytes_received|$upstream_connect_time'"
  32. }
  33. ],
  34. "stream.access_log": {
  35. "key": "stream.access_logpuBlWTJXD64QiOL",
  36. "name": "tcp_format",
  37. "path": "/var/log/nginx/access_stream.log"
  38. },
  39. "stream.error_log": "/var/log/nginx/error_stream.log"
  40. },
  41. "server": {
  42. "port": 80,
  43. "enable": true,
  44. "ssl_session_timeout": "5m",
  45. "ssl_ciphers": "ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4",
  46. "ssl_protocols": ["TLSv1","TLSv1.1","TLSv1.2"],
  47. "ssl_prefer_server_ciphers": "on",
  48. "locations": [
  49. {
  50. "id": "default",
  51. "name": "默认",
  52. "match": {
  53. "path": "/"
  54. },
  55. "root": "/data/www",
  56. "proxy_type": "static",
  57. "enable": true
  58. }
  59. ]
  60. },
  61. "location": {
  62. },
  63. "addNginx": {
  64. },
  65. "nginxSettings": {}
  66. }