diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs new file mode 100644 index 0000000..07c15b6 --- /dev/null +++ b/ecosystem.config.cjs @@ -0,0 +1,20 @@ +module.exports = { + apps: [ + { + name: "wondif_vue", + cwd: "/var/www/wondif_vue", + script: "node", + args: ".output/server/index.mjs", + env: { + NODE_ENV: "production", + + // Auto-mapping Nuxt runtimeConfig.public.strapiUrl + NUXT_PUBLIC_STRAPI_URL: "https://bo.orchestre-ile.com", + + // Auto-mapping Nuxt runtimeConfig.strapiToken + // (si tu l'utilises vraiment) + NUXT_STRAPI_TOKEN: "", + }, + }, + ], +} \ No newline at end of file