All checks were successful
Build and Push Docker Image to Gitea Registry / build-and-push (push) Successful in 17s
14 lines
209 B
Nginx Configuration File
14 lines
209 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name test.out.jafre.li;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
error_page 404 /index.html;
|
|
}
|