• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Recent content by Lear2000

  1. L

    Issue SSL_ERROR_RX_RECORD_TOO_LONG

    I would like to chime in here: Just had this issue, cleared firefox cache, I am on MAC OS. I cleared the dns : terminal -> sudo killall -HUP mDNSResponder CMD SHIFT R in Firefox and this fixed my issue ** this was a newly pointed site via dns to my plesk server
  2. L

    Question Enable bot protection - white list

    Bump? i keep getting this issue
  3. L

    Question API website Description Get

    Thank you that worked.. but what a pain to loop thru all the domains and curl each time for 1 line of text.
  4. L

    Question API website Description Get

    Pulling in domains and status info just fine, I can not find the end point to get a websites description, does anyone know where this is in the rest api endpoints?
  5. L

    Question Enable bot protection - white list

    is it possible to white list ips for Enable bot protection? ahrefs seems to be blocked and if I uncheck this feature it allows them in.
  6. L

    Question NGINX webp fallback

    removed png from: location ~* \.(js|jpg|jpeg|gif|png|css|tgz|gz|rar|bz2|doc|pdf|ppt|tar|wav|bmp|rtf|swf|ico|flv|txt|woff|woff2|svg|webp)$ have the serve static files box unchecked with webp in there but should there not be a way to tell nginx to do the same? whats faster here? to serve...
  7. L

    Question NGINX webp fallback

    so i have narrowed it down to this: location ~* \.(js|jpg|jpeg|gif|png|css|tgz|gz|rar|bz2|doc|pdf|ppt|tar|wav|bmp|rtf|swf|ico|flv|txt|woff|woff2|svg|webp)$ { etag on; if_modified_since exact; add_header Pragma "public"; add_header Cache-Control "max-age=31536000, public"; } if...
  8. L

    Question NGINX webp fallback

    i just noticed that redirect too both files are there, both are 644 doing the removal.. stand by 14915#0: *8289938 open() "/var/www/vhosts/newyorkplasticsurgicalgroup.com/httpdocs/wp-content/themes/nypsg/images/doc-deane1.webp" failed (2: No such file or directory) NGINX error
  9. L

    Question NGINX webp fallback

    ya its not working https://www.newyorkplasticsurgicalgroup.com/wp-content/themes/nypsg/images/doc-deane1.png should be https://www.newyorkplasticsurgicalgroup.com/wp-content/themes/nypsg/images/doc-deane1.webp
  10. L

    Question NGINX webp fallback

    If i upload a file me.png and me.webp if the browser allows it, serve me.webp if not serve me.png this was working for me for a while but now it seems using nginx as a proxy it wont redirect to the webp file...
  11. L

    Question NGINX webp fallback

    I have used the following in the past to serve fall back webp images, <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{REQUEST_URI} (?i)(.*)(\.jpe?g|\.png)$ RewriteCond %{DOCUMENT_ROOT}%1.webp -f RewriteRule...
Back
Top