Skip to main content

Adding multiple ports to an NGINX server block

·19 words·1 min
Orlando Gentil
Author
Orlando Gentil
Jack of all trades, master of none
Adding multiple ports to an NGINX server block.
server {
	listen 80;
	listen 8000;
	server_name example.org;
	root /var/www/;
}