Advertisement
aleksn7

nginx-config.conf

Jan 24th, 2021
1,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.38 KB | None | 0 0
  1.  
  2. user  aleks staff; # user ubunty
  3. worker_processes  1;
  4.  
  5. events {
  6.     worker_connections  1024;
  7. }
  8.  
  9.  
  10. http {
  11.     include       mime.types;
  12.     default_type  application/octet-stream;
  13.  
  14.     sendfile        on;
  15.  
  16.     keepalive_timeout  65;
  17.  
  18.     proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=all:32m max_size=1g;  # можно убрать
  19.    
  20.     include servers/*;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement