Skip to content

Instantly share code, notes, and snippets.

View bayupermadi's full-sized avatar

Bayu Permadi bayupermadi

View GitHub Profile
@bayupermadi
bayupermadi / nginx_wp.conf
Last active December 12, 2019 19:15
Nginx configuration template for wordpress
# Redirect HTTP -> HTTPS
server {
listen 80;
server_name www.your-domain.com your-domain.com;
return 301 https://your-domain.com$request_uri;
}
server {
listen 443 ssl http2;