Skip to content

Instantly share code, notes, and snippets.

@AF111
AF111 / nginx site conf
Last active January 20, 2020 09:50
nginx conf
upstream upstreamserver {
server localhost:4500;
}
server {
listen 80;
listen [::]:80;
server_name www.domain.com;
return 301 https://www.domain.com$request_uri;