* Make only Let's Encrypt path available on port 80 * Protect WordPress admin URLs * Seperate logs for hosts * Update example PHP config * Update README
11 lines
207 B
Text
11 lines
207 B
Text
server {
|
|
server_name www.example.com;
|
|
|
|
access_log /data/log/nginx/www-access.log;
|
|
error_log /data/log/nginx/www-error.log;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:4567/;
|
|
include proxy_params;
|
|
}
|
|
}
|