• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

nginx rewrite

Okay, the main page @ http://imgh.st is loading, but it doesn't look like the rewrites are.

Sorry for being an idiot, but can someone tell me what I'm doing wrong? Any recommendation are definitely appreciated!

This is my .conf file.
Code:
server {
    server_name imgh.st;
    access_log /var/www/illspirit/imgh.st/logs/access.log;
    error_log /var/www/illspirit/imgh.st/logs/error.log;
    root /var/www/illspirit/imgh.st;

    location / {
        index index.php
        try_files $uri $uri/ /index.php?$args;
    }
    location ~ ^/(images)/ {
    try_files $uri /content/system/404.gif;
    expires 1y;
    add_header    Pragma public;
    add_header  Cache-Control public;
    add_header  Last-Modified "";
    add_header  ETag "";
    break;
    }
location ~ \.php$ {
    include fastcgi_params;
    fastcgi_pass php5-fpm-sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_intercept_errors on;
    }
}
 
Hmm, I haven't tried using nginx yet on my website with Chevereto,

but you can try to use this config

Code:
server {
server_name imgh.st;
access_log /var/www/illspirit/imgh.st/logs/access.log;
error_log /var/www/illspirit/imgh.st/logs/error.log;
root /var/www/illspirit/imgh.st;

location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ ^/(images)/ {
try_files $uri /content/system/404.gif;
expires 1y;
add_header Pragma public;
add_header Cache-Control public;
add_header Last-Modified "";
add_header ETag "";
break;
}

EDIT:

Can you check what's on the error log?
 
Back
Top