# Disable the Nether and The End

If you want to disable the Nether and the End dimensions on your Minecraft server, follow the steps below based on your server type.

## **Disabling the Nether**

#### **Method 1: Using server.properties** (Vanilla &amp; Paper/Spigot)

1. Stop your server.
2. Open the `server.properties` file in a text editor.
3. Locate the following line:
    
    ```
    allow-nether=true
    ```
4. Change it to:
    
    ```
    allow-nether=false
    ```
5. Save the file and restart your server.

## **Disabling the End**

#### **Method 1: Using bukkit.yml** (Spigot &amp; Paper)

1. Stop your server.
2. Open the `bukkit.yml` file in a text editor.
3. Locate the following section:
    
    ```
    settings:
      allow-end: true
    ```
4. Change it to:
    
    ```
    settings:
      allow-end: false
    ```
5. Save the file and restart your server.