mirror of
https://github.com/ssep1ol/overleaf-registration-fe.git
synced 2026-07-21 12:30:20 +00:00
18 lines
358 B
Nginx Configuration File
18 lines
358 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
# Serve the frontend static files
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Serve all requests as static files
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
# Logs for debugging (optional)
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
}
|