mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #1010 from sharelatex/as-fix-no-sl
Switch dev env to use v2 port instead of SL
This commit is contained in:
commit
250edf4670
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ module.exports = settings =
|
|||
# running which conflict, or want to run the web process on port 80.
|
||||
internal:
|
||||
web:
|
||||
port: webPort = 3000
|
||||
port: webPort = process.env['WEB_PORT'] or 3000
|
||||
host: process.env['LISTEN_ADDRESS'] or 'localhost'
|
||||
documentupdater:
|
||||
port: docUpdaterPort = 3003
|
||||
|
@ -192,7 +192,7 @@ module.exports = settings =
|
|||
#clsiCookieKey: "clsiserver"
|
||||
|
||||
# Same, but with http auth credentials.
|
||||
httpAuthSiteUrl: 'http://#{httpAuthUser}:#{httpAuthPass}@localhost:3000'
|
||||
httpAuthSiteUrl: 'http://#{httpAuthUser}:#{httpAuthPass}@#{siteUrl}'
|
||||
|
||||
|
||||
maxEntitiesPerProject: 2000
|
||||
|
|
Loading…
Reference in a new issue