Files
reddit-like-app/nginx.conf
2024-09-10 21:30:40 +02:00

8 lines
162 B
Nginx Configuration File

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}