NGINX Troubleshooting

Mods for HESK utilizes various REST API endpoints to handle some features, such as categories, service messages, and custom navigation elements. As a result, some users have reported issues using some of these services due to a misconfiguration of their NGINX server. If you have trouble with some pages (and receive a red alert in the top-right corner of the screen), try adding the following section to your NGINX config:

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