aboutsummaryrefslogtreecommitdiffstats
path: root/nginx.conf (unfollow)
Commit message (Collapse)AuthorFilesLines
3 daysrefactor(nginx): simplify location block and remove caching configurationsaturneric1-7/+1
* Removed caching configuration for static files. * Updated `try_files` directive to return a 404 error instead of redirecting to `index.html`.
3 daysfeat(nginx): add initial nginx configurationsaturneric1-0/+6
* Set up server to listen on port 80 * Define root directory and index files * Configure caching for static assets * Implement error handling for 404 pages
3 daysrefactor(docker): simplify Dockerfile and nginx configurationsaturneric1-99/+13
* Removed unnecessary stages and commands from the Dockerfile. * Streamlined the nginx configuration for better readability and maintainability. * Ensured the application still builds and runs correctly after changes.
3 daysfeat(docker): add Dockerfile and CI workflow for containerizationsaturneric1-0/+103
* Introduced a `Dockerfile` for building and running the application in a container. * Added a CI workflow in `.gitea/workflows/ci.yaml` to automate testing and image pushing on main branch pushes. * Configured Nginx for serving the application with health checks and caching strategies.