Skip to content

Instantly share code, notes, and snippets.

View vietanhduong's full-sized avatar

Viet-Anh Duong vietanhduong

  • Hanoi, Vietnam
  • 15:11 (UTC +07:00)
View GitHub Profile
@vietanhduong
vietanhduong / site.conf
Last active April 20, 2021 17:15
nginx ssl config
server {
listen 80;
listen [::]:80;
server_name example.com;
return 302 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;