• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • 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