Nginx for Developers: An Introduction
21–30 of 142 posts
Re: Nginx for Developers: An Introduction
#22The Internet has no default port; 80 is for HTTP. If the port is omitted, then the default for the scheme[1] is assumed.
Re: Nginx for Developers: An Introduction
#23> The default port for the internet is 80, so if there’s no port in a url, that means it’s 80. The Internet has no default port; 80 is for HTTP. If the port is omitted, then the default for the scheme[1] is assumed. [1]: https://en.wikipedia.org/wiki/URI_scheme
Re: Nginx for Developers: An Introduction
#24Re: Nginx for Developers: An Introduction
#25Re: Nginx for Developers: An Introduction
#26Been thinking about nginx for some time. If I could get an easy Mono/F# implementation working with it, I'd jump on it in a heartbeat.
Re: Nginx for Developers: An Introduction
#27Been thinking about nginx for some time. If I could get an easy Mono/F# implementation working with it, I'd jump on it in a heartbeat.
Re: Nginx for Developers: An Introduction
#28I am a little hesitant on restarting nginx. When you do that, it drops the connections that are currently attached. Instead, you may want to do `nginx reload`
I can't imagine there are many connections to worry about if you're configuring a new server.
I just wish the article talked about using reload as well as restart and when to use them.
Re: Nginx for Developers: An Introduction
#29I am a little hesitant on restarting nginx. When you do that, it drops the connections that are currently attached. Instead, you may want to do `nginx reload`
I can't imagine there are many connections to worry about if you're configuring a new server.