This commit starts a brand new git repository, using the Fedora Docs content that was previously hosted in the Community Ops "tickets" repo. Since we moved to Forgejo, it makes more sense to split out our docs content into its own dedicated repository, making it easier to discover and having specific issues and bugs related to content. A new Pull Request will be made to the "tickets" repo to remove the docs content from there, to avoid duplication of content. Signed-off-by: Justin Wheeler <jwheel@redhat.com>
14 lines
269 B
Nginx Configuration File
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;
|
|
}
|
|
}
|