---
title: Managing DLC & Mods on Your Factorio Server
description: "This guide walks you through enabling or disabling mods, including the popular Space Age DLC, directly from the `mod-list.json` file. "
source: "https://nodecraft.com/support/games/factorio/managing-dlc-mods-on-your-factorio-server"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvNzM5Y2YwMWIyZC9mYWN0b3Jpby1iYW5uZXItMTIyLnBuZy9tLyJ9LHsibmFtZSI6ImdhbWVfbG9nbyIsImltYWdlX3VybCI6Imh0dHBzOi8vY21zLWEubm9kZWNyYWZ0LmNvbS9mLzEzMzkzMi8zNzV4MTUwL2U3MDA3MDlhNTgvbG9nby5wbmcvbS8ifSx7Im5hbWUiOiJjdGFfdGV4dCIsInRleHQiOiJDcmVhdGUgeW91ciBvd24gc2VydmVyISJ9LHsibmFtZSI6InRleHQiLCJ0ZXh0IjoiTWFuYWdpbmcgRExDICYgTW9kcyBvbiBZb3VyIEZhY3RvcmlvIFNlcnZlciJ9XQ&s=7a4808d9c68e6eb78ef808aa485933b6675bca8d5a4226c7a59caae8aee6b78d"
published: "2024-10-21T17:52:18.000Z"
updated: "2024-10-21T17:51:00.000Z"
---

# Managing DLC & Mods on Your Factorio Server

This guide walks you through enabling or disabling mods, including the popular Space Age DLC, directly from the `mod-list.json` file. 

Managing mods and DLCs in Factorio can be essential for customizing your server’s gameplay. Whether you want to streamline gameplay by removing certain mods or modifying the latest Space Age DLC, Nodecraft's panel makes enabling or disabling mods and DLC content easy. Here's a simple guide to help you do just that.

## Prerequisites

- A Factorio server hosted on Nodecraft.
- Access to your Nodecraft panel.
- Mods already uploaded to your server (if you plan to manage custom mods).

## Log into Your Nodecraft Account

1. Navigate to [Nodecraft's ](https://app.nodecraft.com/dashboard)[website](https://nodecraft.com) and log in to your account.
2. Once logged in, select your Factorio server from your list of active servers.

## Open the Server Files

1. In the Nodecraft panel, find the navigation menu on the left.
2. Click on **"Server Files"** under the side navigation.
3. Once in the "Server Files" area, locate the `mod-list.json` file in the `/mods/` directory. This file contains a list of all installed mods, both enabled and disabled. If this folder and file don’t exist, you may need to start the server first, or you can manually create it.

  ![Shows the mods folder in the Server Files for Factorio](https://cms-a.nodecraft.com/f/133932/790x433/c4d7aab2f2/factorio-server-files-mods.png/m/)

## Edit the `mod-list.json` File

1. Click the **Edit** button to open the `mod-list.json` file in the editor.

  You should see a structure like this:

  ![Shows the mod-list.json in the mods folder for Factorio](https://cms-a.nodecraft.com/f/133932/844x658/3415e51710/factorio-mod-list.png/m/)

  In this file, each mod has a `"name"` and an `"enabled"` flag. Mods that have `"enabled": true` are active, while mods that have `"enabled": false` are inactive.

## Enable or Disable Mods

1. To **enable a mod**, set `"enabled": true` for the mod, you want to activate.

  Example:

  ```language-json
  {
    "name": "space-age",
    "enabled": true
  }

  ```
2. To **disable a mod**, set `"enabled": false`.

  Example:

  ```language-json
  {
    "name": "space-age",
    "enabled": false
  }

  ```
3. After making your changes, click **Save** to update the file.

## Restart Your Server

1. After you've saved your changes to the `mod-list.json` file, go back to the main server control panel.
2. Click the **Restart **button to apply the changes to your server.

Once the server restarts, the changes to your mods and DLC will take effect, allowing you to play with your chosen configuration.

## Additional Tips

- **Adding New Mods**: You will need to upload new mods using the **"FTP/SFTP Access"** option in the Nodecraft panel. You can find our [modding installation guide here](https://nodecraft.com/support/games/factorio/downloading-and-installing-mods-on-factorio)!
- **Managing DLC**: Factorio DLC, such as Space Age, can be handled similarly, although they often don't need manual toggling through the `mod-list.json`. Ensure that any necessary DLC content is installed on the server for it to work.

This guide should help you manage your Factorio mods and DLC easily. Whether you’re experimenting with new mods or disabling features for a more streamlined game, the Nodecraft panel makes it simple and efficient to control your server's content.
