Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80;
- server_name anonyviet.com www.anonyviet.com;
- return 301 https://$server_name$request_uri;
- }
- server {
- listen 443 http2 ssl;
- server_name anonyviet.com www.anonyviet.com;
- keepalive_timeout 30;
- ssl on;
- ssl_certificate /etc/ssl/anonyviet_com.crt;
- ssl_certificate_key /etc/ssl/private/anonyviet.com.key;
- ssl_session_timeout 5m;
- ssl_session_cache shared:SSL:10m;
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
- ssl_ciphers "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
- ssl_prefer_server_ciphers on;
- add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;";
- ssl_stapling on;
- # access_log off;
- access_log /home/anonyviet.com/logs/access.log;
- # error_log off;
- error_log /home/anonyviet.com/logs/error.log;
- root /home/anonyviet.com/public_html;
- index index.php index.html index.htm;
- server_name anonyviet.com;
- location / {
- try_files $uri $uri/ /index.php?$args;
- }
- # Custom configuration
- include /home/anonyviet.com/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 /home/anonyviet.com/public_html$fastcgi_script_name;
- }
- location /nginx_status {
- stub_status on;
- access_log off;
- allow 127.0.0.1;
- deny all;
- }
- location /php_status {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /home/anonyviet.com/public_html$fastcgi_script_name;
- include /etc/nginx/fastcgi_params;
- allow 127.0.0.1;
- deny all;
- }
- location ~ /\. {
- deny all;
- }
- 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 7777;
- access_log off;
- log_not_found off;
- error_log /home/anonyviet.com/logs/nginx_error.log;
- root /home/anonyviet.com/private_html;
- index index.php index.html index.htm;
- server_name anonyviet.com;
- auth_basic "Restricted";
- auth_basic_user_file /home/anonyviet.com/private_html/hocvps/.htpasswd;
- location / {
- 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 /home/anonyviet.com/private_html$fastcgi_script_name;
- }
- location ~ /\. {
- deny all;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment