Blog/nginx.conf
OCram85 683b4b02a1
Some checks failed
ci/woodpecker/push/renovate Pipeline was successful
ci/woodpecker/pr/renovate Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/next Pipeline was successful
ci/woodpecker/push/master Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/master Pipeline was successful
ci/woodpecker/pr/next Pipeline failed
pin sevice to ipv4
2024-03-24 09:15:44 +01:00

18 lines
249 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
include mime.types;
server {
listen 0.0.0.0:80;
root /usr/share/nignx/html;
index index.html;
error_page 404 /404.html;
location / {
try_files $uri $uri/ =404;
}
}
}