Nathan Woodburn
51076c5dc1
All checks were successful
Build Docker / Build Docker (push) Successful in 46s
13 lines
185 B
Nginx Configuration File
13 lines
185 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
access_log off;
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
index index.html;
|
|
# 404 error page
|
|
error_page 404 /index.html;
|
|
}
|
|
}
|