rileyandlizzy.wedding/nginx.conf
2023-12-27 14:38:39 -07:00

9 lines
176 B
Nginx Configuration File

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;
}