W
W
Web19832019-08-23 13:59:00
Nginx
Web1983, 2019-08-23 13:59:00

Need help in nginx. How to add directive to nginx config?

Directive

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

nginx configuration
server {
  server_name funy44.com www.funy44.com;
  charset UTF-8;
  disable_symlinks if_not_owner from=$root_path;
  include /etc/nginx/vhosts-includes/*.conf;
  include /etc/nginx/vhosts-resources/funy4.com/*.conf;
  access_log /var/www/httpd-logs/funy44.com.access.log;
  error_log /var/www/httpd-logs/funy44.com.error.log notice;
  ssi on;
  return 301 https://$host:443$request_uri;
  set $root_path /var/www/funy44/data/www/funy44.com;
  root $root_path;
location / {
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @php;
}
  }
  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f [email protected]";
    fastcgi_pass unix:/var/www/php-fpm/funy44.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  index index.php index.html;
  listen 19.112.12.170:80;
}

server {
  server_name funy44.com www.funy44.com;
  ssl_certificate "/var/www/httpd-cert/funy44/funy44.com_le2.crt";
  ssl_certificate_key "/var/www/httpd-cert/funy44/fun44.com_le2.key";
  ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
  ssl_prefer_server_ciphers on;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  add_header Strict-Transport-Security "max-age=31536000;";
  ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
  charset UTF-8;
  disable_symlinks if_not_owner from=$root_path;
  include /etc/nginx/vhosts-includes/*.conf;
  include /etc/nginx/vhosts-resources/funy44.com/*.conf;
  access_log /var/www/httpd-logs/funy44.com.access.log;
  error_log /var/www/httpd-logs/funy44.com.error.log notice;
  ssi on;
  set $root_path /var/www/funyo44/data/www/funy44.com;
  root $root_path;
  location / {
    location ~ [^/]\.ph(p\d*|tml)$ {
      try_files /does_not_exists @php;
    }
  }
  location @php {
    fastcgi_index index.php;
    fastcgi_param PHP_ADMIN_VALUE "sendmail_path = /usr/sbin/sendmail -t -i -f [email protected]";
    fastcgi_pass unix:/var/www/php-fpm/funy44.sock;
    fastcgi_split_path_info ^((?U).+\.ph(?:p\d*|tml))(/?.+)$;
    try_files $uri =404;
    include fastcgi_params;
  }
  index index.php index.html;
  listen 19.112.12.170:443 ssl http2;
}

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
dodo512, 2019-08-23
@dodo512

location / {
    location ~ [^/]\.ph(p\d*|tml)$ {
      try_files /does_not_exists @php;
    }
  }

location / {
        try_files $uri $uri/ /index.php?$query_string;
        location ~ [^/]\.ph(p\d*|tml)$ {
            try_files /does_not_exists @php;
        }
    }

W
Web1983, 2019-08-27
@Web1983

Raised the Apache and the problem was solved.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question