Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/ContentProcessorWeb/nginx-custom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ server {
listen 80;
server_name localhost;

# Suppress nginx server logs for favicon requests
location = /favicon.ico {
return 204;
access_log off;
}

location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
Expand Down
Binary file removed src/ContentProcessorWeb/public/favicon.ico
Binary file not shown.
5 changes: 0 additions & 5 deletions src/ContentProcessorWeb/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="theme-color"
Expand All @@ -18,8 +17,6 @@
name="description"
content="Web site created using create-react-app"
/>

<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -30,8 +27,6 @@
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Content Processor</title>
Expand Down
Loading