Files
reddit-like-app/nginx.conf
T

8 lines
162 B
Nginx Configuration File
Raw Normal View History

2024-09-10 21:30:40 +02:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}