react-homepage/docker/nginx.conf
Przemek Grondek 9e3f9d9a7a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
Add CI
Co-authored-by: Przemek Grondek <przemek@grondek.pl>
Co-committed-by: Przemek Grondek <przemek@grondek.pl>
2023-09-14 20:58:42 +00:00

9 lines
167 B
Nginx Configuration File

server {
listen 80;
location / {
root /usr/share/nginx/html/;
include /etc/nginx/mime.types;
try_files $uri $uri/ /index.html;
}
}