-
Notifications
You must be signed in to change notification settings - Fork 445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nginx #440
base: master
Are you sure you want to change the base?
Nginx #440
Conversation
PR Summary
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Here's a quick review without testing.
@@ -146,4 +146,4 @@ EXPOSE 8080 | |||
|
|||
COPY conf.d/env $PROJECT_DIR/.env | |||
|
|||
CMD ["/app/start.sh"] | |||
CMD ["/app/start.sh"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
make sure that there is always a newline at the end of the file
4.2/cmd
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file can be removed altogether
Timeout 600 | ||
StartServers 5 | ||
MinSpareServers 5 | ||
MaxSpareServers 10 | ||
MaxClients 150 | ||
MaxRequestsPerChild 0 | ||
HostnameLookups Off | ||
KeepAlive On | ||
MaxKeepAliveRequests 100 | ||
KeepAliveTimeout 15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we don't use apache anymore, we don't need the apache.conf altogether
@@ -1,10 +1,10 @@ | |||
# See https://nominatim.org/release-docs/4.2.0/admin/Installation/#tuning-the-postgresql-database | |||
shared_buffers = 2GB | |||
shared_buffers = 16GB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason for that change?
maintenance_work_mem = 10GB | ||
autovacuum_work_mem = 2GB | ||
work_mem = 50MB | ||
effective_cache_size = 24GB | ||
synchronous_commit = off | ||
max_wal_size = 1GB | ||
checkpoint_timeout = 10min | ||
checkpoint_completion_target = 0.9 | ||
checkpoint_completion_target = 0.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline
PR Summary
|
No description provided.