Files
Open-Telegram-to-Notion-Web…/docker/nginx/conf.d/default.conf

9 lines
145 B
Plaintext

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