Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.137.161.247
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
nginx /
conf.d /
Delete
Unzip
Name
Size
Permission
Date
Action
php-fpm.conf.rpmsave
2.58
KB
-rw-r--r--
2020-11-17 15:24
unp.conf
3.68
KB
-rw-r--r--
2023-08-18 06:44
wb.conf
2.97
KB
-rw-r--r--
2022-12-03 07:39
Save
Rename
# PHP-FPM FastCGI server # network or unix domain socket configuration #upstream php-fpm { # server unix:/run/php-fpm/www.sock; #} ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Nginx. # https://www.nginx.com/resources/wiki/start/ # https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ # https://wiki.debian.org/Nginx/DirectoryStructure # # In most cases, administrators will remove this file from sites-enabled/ and # leave it as reference inside of sites-available where it will continue to be # updated by the nginx packaging team. # # This file will automatically load configuration files provided by other # applications, such as Drupal or Wordpress. These applications will be made # available underneath a path with that package name, such as /drupal8. # # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. ## # Default server configuration # server { listen 80; server_name wb.catsdev.com; #listen [::]:80 default_server; return 301 https://wb.catsdev.com; } server { listen 443 ssl; server_name wb.catsdev.com; client_max_body_size 1024M; #auth_basic "Access denied"; #auth_basic_user_file /etc/nginx/.htpasswd; ssl on; ssl_certificate /etc/ssl/fullchain.pem; ssl_certificate_key /etc/ssl/privkey.pem; # SSL configuration # # listen 443 ssl default_server; # listen [::]:443 ssl default_server; # # Note: You should disable gzip for SSL traffic. # See: https://bugs.debian.org/773332 # # Read up on ssl_ciphers to ensure a secure configuration. # See: https://bugs.debian.org/765782 # # Self signed certs generated by the ssl-cert package # Don't use them in a production server! # # include snippets/snakeoil.conf; root /home/www/wb/public; # Add index.php to the list if you are using PHP index index.php index.html index.htm; #server_name _; #add_header X-Frame-Options "SAMEORIGIN"; # add_header X-XSS-Protection "1; mode=block"; # add_header X-Content-Type-Options "nosniff"; charset utf-8; location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.php; location ~ ^/(index|index_dev|config)\.php(/|$) { fastcgi_read_timeout 400; fastcgi_pass unix:/var/run/php/php7.4-fpm-wb.sock; fastcgi_split_path_info ^(.+\.php)(/.*)$; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } # отключаем обработку запросов фреймворком к несуществующим статичным файлам location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar|map)$ { try_files $uri =404; # expires 10d; } location / { try_files $uri @rewriteapp; } location @rewriteapp { rewrite ^(.*)$ /index.php/$1 last; } }