chore: Make name a little less dangerous
This commit is contained in:
parent
c2e40886a2
commit
d3b4576d24
2 changed files with 12 additions and 12 deletions
14
README.md
14
README.md
|
@ -1,10 +1,10 @@
|
|||
# GoogleDonts - a privacy-friendly Google Fonts proxy
|
||||
# PoodleDonts - a privacy-friendly Google Fonts proxy
|
||||
|
||||
GoogleDonts is a Flask app that acts as a proxy for Google Fonts. It allows you to use fonts without disclosing your website visitors' IP addresses to Google.
|
||||
PoodleDonts is a Flask app that acts as a proxy for Google Fonts. It allows you to use fonts without disclosing your website visitors' IP addresses to Google.
|
||||
|
||||
## How it works
|
||||
|
||||
GoogleDonts works by fetching the font files from Google and serving them to the client. This way, the client's IP address is never disclosed to Google. It does not store any data about the client.
|
||||
PoodleDonts works by fetching the font files from Google and serving them to the client. This way, the client's IP address is never disclosed to Google. It does not store any data about the client.
|
||||
|
||||
It modifies the CSS files so that the font URLs also point to the proxy. This way, the client's browser fetches the font files from the proxy instead of Google.
|
||||
|
||||
|
@ -17,8 +17,8 @@ We try our best to ensure that users do not make any connections to Google's ser
|
|||
1. Clone the repository
|
||||
|
||||
```bash
|
||||
git clone https://git.private.coffee/PrivateCoffee/googledonts.git
|
||||
cd googledonts
|
||||
git clone https://git.private.coffee/PrivateCoffee/poodledonts.git
|
||||
cd poodledonts
|
||||
```
|
||||
|
||||
2. Create a virtual environment and install the dependencies
|
||||
|
@ -39,8 +39,8 @@ In production, you should use a WSGI server like uWSGI, and a reverse proxy like
|
|||
|
||||
## Configuration
|
||||
|
||||
GoogleDonts does not require any configuration. However, if you use `flask run`, you can set the `PORT` environment variable to change the port the app listens on. By default, it listens on port 5678.
|
||||
PoodleDonts does not require any configuration. However, if you use `flask run`, you can set the `PORT` environment variable to change the port the app listens on. By default, it listens on port 5678.
|
||||
|
||||
## License
|
||||
|
||||
GoogleDonts is licensed under the MIT License. See [LICENSE](LICENSE) for more information.
|
||||
PoodleDonts is licensed under the MIT License. See [LICENSE](LICENSE) for more information.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
name="viewport"
|
||||
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
||||
/>
|
||||
<title>GoogleDonts</title>
|
||||
<title>PoodleDonts</title>
|
||||
<link
|
||||
href="https://nobsdelivr.private.coffee/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
|
||||
rel="stylesheet"
|
||||
|
@ -56,9 +56,9 @@
|
|||
<body>
|
||||
<header class="hero text-center">
|
||||
<div class="container">
|
||||
<h1 class="display-4">Welcome to GoogleDonts</h1>
|
||||
<h1 class="display-4">Welcome to PoodleDonts</h1>
|
||||
<p class="lead">
|
||||
GoogleDonts is a proxy service to Google Fonts. It allows you to use
|
||||
PoodleDonts is a proxy service to Google Fonts. It allows you to use
|
||||
Google Fonts without any data being sent to Google.
|
||||
</p>
|
||||
</div>
|
||||
|
@ -79,7 +79,7 @@
|
|||
<div class="container">
|
||||
<h2>Privacy / Disclaimer</h2>
|
||||
<p>
|
||||
GoogleDonts is a privacy-focused service. It does not track you or log
|
||||
PoodleDonts is a privacy-focused service. It does not track you or log
|
||||
any data. It creates a fully separate connection to Google Fonts for
|
||||
each request, so Google does not see your IP address or any other
|
||||
information about you.
|
||||
|
@ -93,7 +93,7 @@
|
|||
</p>
|
||||
<p>
|
||||
The service is open-source and you can view the source code on
|
||||
<a href="https://git.private.coffee/privatecoffee/googledonts"
|
||||
<a href="https://git.private.coffee/privatecoffee/poodledonts"
|
||||
>Private.coffee Git</a
|
||||
>.
|
||||
</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue