team-docs/nginx.conf
ojn 801aafd8a7 Preview script channges from https://pagure.io/fedora-docs/template/pull-request/4
and description on how to use a local server
with the regular Antora Workflow
2018-09-21 17:49:59 +02: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;
}
}