rileyandlizzy.wedding/nginx.conf

9 lines
176 B
Nginx Configuration File
Raw Permalink Normal View History

2023-12-27 16:38:39 -05:00
server {
listen 80;
index index.php index.html;
server_name localhost;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /usr/share/html;
}