server { listen 80; server_name www.demo; rewrite ^(.*) http://demo$1 permanent; } server { listen 80 default_server; # access_log off; access_log /home/demo/logs/access.log; # error_log off; error_log /home/demo/logs/error.log; root /home/demo/public_html; index index.php index.html index.htm; server_name demo; # Config wordpress + Plugin wp super cache #include /etc/nginx/conf/supercache.conf; # Config wordpress + Plugin W3 Total Cache #include /etc/nginx/conf/w3total.conf; # Config wordpress + Plugin WP-Rocket #include /etc/nginx/conf/wprocket.conf; # Config wordpress + Plugin wp fastest cache #include /etc/nginx/conf/wp-fastest-cache.conf; location / { try_files $uri $uri/ /index.php?$args; } # Custom configuration include /home/demo/public_html/*.conf; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_connect_timeout 1000; fastcgi_send_timeout 1000; fastcgi_read_timeout 1000; fastcgi_buffer_size 256k; fastcgi_buffers 4 256k; fastcgi_busy_buffers_size 256k; fastcgi_temp_file_write_size 256k; fastcgi_intercept_errors on; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location /nginx_status { stub_status on; access_log off; allow 127.0.0.1; allow 172.104.52.44; deny all; } location /php_status { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include /etc/nginx/fastcgi_params; allow 127.0.0.1; allow 172.104.52.44; deny all; } # Disable .htaccess and other hidden files location ~ /\.(?!well-known).* { deny all; access_log off; log_not_found off; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location ~* \.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|eot|svg|ttf|woff)$ { gzip_static off; add_header Pragma public; add_header Cache-Control "public, must-revalidate, proxy-revalidate"; access_log off; expires 30d; break; } location ~* \.(txt|js|css)$ { add_header Pragma public; add_header Cache-Control "public, must-revalidate, proxy-revalidate"; access_log off; expires 30d; break; } } #server { # listen 2025; # access_log off; # log_not_found off; # error_log /home/demo/logs/nginx_error.log; # # root /home/demo/private_html; # index index.php index.html index.htm; # server_name demo; # # auth_basic "Restricted"; # auth_basic_user_file /home/demo/private_html/hocvps/.htpasswd; # # location / { # autoindex on; # try_files $uri $uri/ /index.php; # } # # location ~ \.php$ { # fastcgi_split_path_info ^(.+\.php)(/.+)$; # include /etc/nginx/fastcgi_params; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_connect_timeout 1000; # fastcgi_send_timeout 1000; # fastcgi_read_timeout 1000; # fastcgi_buffer_size 256k; # fastcgi_buffers 4 256k; # fastcgi_busy_buffers_size 256k; # fastcgi_temp_file_write_size 256k; # fastcgi_intercept_errors on; # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # } # location ~ /\. { # deny all; # } #}