Compare commits
1 commit
main
...
codespace-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb7c0f794d |
7 changed files with 13 additions and 16 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
dist/*
|
||||
worker/*
|
||||
node_modules/*
|
||||
.secrets
|
||||
1
E.js
1
E.js
|
|
@ -1 +0,0 @@
|
|||
test
|
||||
10
README.md
10
README.md
|
|
@ -1,13 +1,3 @@
|
|||
## Deprection notice
|
||||
|
||||
This project has been deprecated and archived.
|
||||
|
||||
I recommend you use Cloudflare's native [Bulk Redirects](https://developers.cloudflare.com/rules/bulk-redirects) or [Dynamic Redirects](https://blog.cloudflare.com/dynamic-redirect-rules/) features to redirect domains, rather than Page Rules.
|
||||
|
||||
You may use or fork this project if you desire, but it is not supported by me and will not recieve any updates.
|
||||
|
||||
The original README is below.
|
||||
|
||||
# Domain Redirecting with Cloudflare Workers
|
||||
|
||||
Easily redirect one entire domain to another with a serverless Cloudflare Worker.
|
||||
|
|
|
|||
|
|
@ -7,6 +7,5 @@
|
|||
"cloud.erisa.moe": "erisa.cloud",
|
||||
"docs.erisa.moe": "docs.erisa.uk",
|
||||
"evenfall.uk": "evenfall.site",
|
||||
"might-be-super.fun": "owo.whats-th.is",
|
||||
"cord.gift": "dis.cord.gift"
|
||||
"might-be-super.fun": "owo.whats-th.is"
|
||||
}
|
||||
|
|
|
|||
5
package-lock.json
generated
Normal file
5
package-lock.json
generated
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"name": "domain-redirect",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1
|
||||
}
|
||||
|
|
@ -6,7 +6,9 @@
|
|||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"keywords": ["cloudflare-worker"],
|
||||
"keywords": [
|
||||
"cloudflare-worker"
|
||||
],
|
||||
"author": "Erisa A <erisa@erisa.uk>",
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,3 @@ type = "webpack"
|
|||
compatibility_flags = []
|
||||
workers_dev = true
|
||||
compatibility_date = "2021-10-12"
|
||||
# account_id is required if you have multiple accounts within single profile.
|
||||
# account_id = ""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue