and update Dockerfile (fix) - Adjusted banner sizes (fix) - Notifications no longer show on mobile if already read (feat) - Updated Dockerfile for proper build and deployment
9 lines
171 B
Nginx Configuration File
9 lines
171 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |