mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 20:41:51 +00:00
47 lines
1.2 KiB
Markdown
47 lines
1.2 KiB
Markdown
# Deployment
|
|
|
|
#### #1 - Configurate
|
|
|
|
Update the `production` settings with the IP and domain name where the project will be running.
|
|
|
|
**Path —** `./config/environments/production/server.json`.
|
|
```js
|
|
{
|
|
"host": "domain.io", // IP or domain
|
|
"port": 1337,
|
|
"autoReload": {
|
|
"enabled": false
|
|
},
|
|
"admin": {
|
|
"path": "/dashboard" // We highly recommend to change the default `/admin` path for security reasons.
|
|
}
|
|
}
|
|
```
|
|
|
|
**⚠️ If you changed the path to access to the administration, the step #2 is required.**
|
|
|
|
#### #2 - Setup (optional)
|
|
|
|
Run this following command to install the dependencies and build the project with your custom configurations.
|
|
|
|
```bash
|
|
cd /path/to/the/project
|
|
npm run setup
|
|
```
|
|
|
|
> Note: To display the build logs use the --debug option `npm run setup --debug`.
|
|
|
|
#### #3 - Launch the server
|
|
|
|
Run the server with the `production` settings.
|
|
|
|
```bash
|
|
NODE_ENV=production npm start
|
|
```
|
|
|
|
> We highly recommend to use [pm2](https://github.com/Unitech/pm2/) to manage your process.
|
|
|
|
### Advanced configurations
|
|
|
|
If you want to host the administration on another server than the API, [please take a look at this dedicated section](../advanced/customize-admin.md#deployment).
|