* Make only Let's Encrypt path available on port 80 * Protect WordPress admin URLs * Seperate logs for hosts * Update example PHP config * Update README
8 lines
105 B
Text
8 lines
105 B
Text
server {
|
|
server_name .example.com;
|
|
|
|
listen 80;
|
|
|
|
include inc/redirect-ssl;
|
|
include inc/letsencrypt;
|
|
}
|