Browse Source

Change default interface of web and streaming from 0.0.0.0 to 127.0.0.1 (#11302)

pull/4/head
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
e7353c47db
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      config/puma.rb
  2. +1
    -1
      docker-compose.yml
  3. +1
    -1
      streaming/index.js

+ 2
- 2
config/puma.rb View File

@ -2,9 +2,9 @@ threads_count = ENV.fetch('MAX_THREADS') { 5 }.to_i
threads threads_count, threads_count
if ENV['SOCKET']
bind 'unix://' + ENV['SOCKET']
bind "unix://#{ENV['SOCKET']}"
else
port ENV.fetch('PORT') { 3000 }
bind "tcp://127.0.0.1:#{ENV.fetch('PORT', 3000)}"
end
environment ENV.fetch('RAILS_ENV') { 'development' }

+ 1
- 1
docker-compose.yml View File

@ -58,7 +58,7 @@ services:
image: tootsuite/mastodon
restart: always
env_file: .env.production
command: yarn start
command: BIND=0.0.0.0 node ./streaming
networks:
- external_network
- internal_network

+ 1
- 1
streaming/index.js View File

@ -672,7 +672,7 @@ const attachServerWithConfig = (server, onSuccess) => {
}
});
} else {
server.listen(+process.env.PORT || 4000, process.env.BIND || '0.0.0.0', () => {
server.listen(+process.env.PORT || 4000, process.env.BIND || '127.0.0.1', () => {
if (onSuccess) {
onSuccess(`${server.address().address}:${server.address().port}`);
}

Loading…
Cancel
Save