package-maintainer-docs/nginx.conf
Otto Urpelainen bd40aeedab Wiki import
Restart the repository by
1. Starting to use Antora
2. Moving over some packaging related pages over from the wiki
3. Updating the pages where there are obvious problems
2021-07-07 21:55:43 +03:00

14 lines
269 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
location / {
root /antora/public;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}