From 39b8022ae8a09a40b3f1f7c66f1bf14b3b4eedce Mon Sep 17 00:00:00 2001 From: James Allen Date: Tue, 19 Aug 2014 12:28:19 +0100 Subject: [PATCH] Move nginx config file location --- server-ce/Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-ce/Gruntfile.coffee b/server-ce/Gruntfile.coffee index 357e3c660a..954bf645cb 100644 --- a/server-ce/Gruntfile.coffee +++ b/server-ce/Gruntfile.coffee @@ -394,7 +394,7 @@ module.exports = (grunt) -> command.push( "--maintainer", "ShareLaTeX " "--config-files", "/etc/sharelatex/settings.coffee" - "--config-files", "/etc/nginx/sites-enabled/sharelatex" + "--config-files", "/etc/nginx/conf.d/sharelatex.conf" "--directories", "/var/lib/sharelatex" "--directories", "/var/log/sharelatex" ) @@ -452,7 +452,7 @@ module.exports = (grunt) -> command.push( "package/config/settings.coffee=/etc/sharelatex/settings.coffee" - "package/nginx/sharelatex=/etc/nginx/sites-enabled/sharelatex" + "package/nginx/sharelatex=/etc/nginx/conf.d/sharelatex.conf" ) console.log "fpm " + command.join(" ") proc = spawn "fpm", command, stdio: "inherit"