--- title: "Remove GeoBlock Plugin" --- import PangolinCloudTocCta from "/snippets/pangolin-cloud-toc-cta.mdx"; This is a community guide and is not officially supported. If you have any issues, please reach out to the community on [Discord](https://pangolin.net/discord) or [Github discussions](https://github.com/orgs/fosrl/discussions). Pangolin now supports native geoblocking. If you previously installed the Traefik GeoBlock plugin, remove it before enabling native geoblocking to avoid duplicate blocking or startup errors. After cleanup, follow [Enable Geo-blocking](/self-host/advanced/enable-geoblocking) to configure native geoblocking in Pangolin. ## Remove the GeoBlock plugin Remove any references to `geoblock@file` from your Traefik entry points, routers, or labels. Example removal in `/config/traefik/traefik_config.yml`: ```yaml entryPoints: websecure: http: middlewares: # Remove this line - geoblock@file ``` Delete the GeoBlock plugin block from `/config/traefik/traefik_config.yml`: ```yaml experimental: plugins: geoblock: moduleName: github.com/PascalMinder/geoblock version: v0.3.2 ``` Delete the GeoBlock middleware section from `/config/traefik/dynamic_config.yml`: ```yaml http: middlewares: geoblock: plugin: geoblock: ... ``` Restart Traefik to apply the changes: ```bash docker restart traefik ``` ## Next steps Follow [Enable Geo-blocking](/self-host/advanced/enable-geoblocking) to configure native geoblocking in Pangolin.