9f35d89961
Deploy Slides / build-and-deploy (push) Successful in 1m50s
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 lines
181 B
Nginx Configuration File
11 lines
181 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ $uri/index.html /index.html;
|
|
}
|
|
}
|