-
-
Notifications
You must be signed in to change notification settings - Fork 606
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
Update h5bp #876
Update h5bp #876
Conversation
ff051b1
to
c925838
Compare
roles/nginx/templates/nginx.conf.j2
Outdated
error_log {{ nginx_logs_root }}/error.log warn; | ||
{% endblock %} | ||
|
||
{% block pid %} | ||
# The file storing the process ID of the main process | ||
pid /run/nginx.pid; | ||
# Default: nginx.pid | ||
pid /var/run/nginx.pid; |
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.
Was this change from h5bp? I believe it should stay as /run
. It's the "newer" location and /var/run
is symlinked to it.
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.
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.
So /run
is the correct one?
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.
From what I can tell it is. So let's keep it as /run
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.
reverted
c925838
to
5e944b2
Compare
Rest looks good, thanks 👍 |
Note: I can't get ssl.no-default to work. Thus, I omitted it.