---
title: "PAC Issues on Node Versions 1.10.1.192+"
slug: "pac-issues-on-node-versions-1101192"
updated: 2025-03-07T17:41:28Z
published: 2025-03-07T17:41:28Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.catchpoint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PAC Issues on Node Versions 1.10.1.192+

We have identified an issue for nodes that are above 1.10.1.192 using local PAC files.

While we work on a fix for the issue, the workaround is to host your proxy file somewhere (it could even be locally hosted on the node itself.))

To locally host a PAC on your node, follow these steps:

1. Navigate to: `/etc/nginx/sites-enabled`
2. Create a file name of your choice and paste the following:

```
server {
    listen 127.0.0.1:80;
    server_name localhost;
    location /{
        root /tmp;   
        Index index.html;
    }
}
```

This file suggests that your proxy should be placed under **/tmp**. You can change this location according to your preference.

1. Now you can configure this locally-hosted PAC Proxy using the Catchpoint utility.

To change the proxy setting follow this guide: [Proxy Setup for Enterprise Nodes](https://docs.catchpoint.com/docs/proxy-setup-for-enterprise-nodes)
