Remove SFO-1 ref from FTP

This commit is contained in:
Ben Allfree 2024-09-06 03:01:38 -07:00
parent 60b663d53c
commit 453c89be2b
4 changed files with 3 additions and 4 deletions

View File

@ -29,7 +29,7 @@ You can run the complete PocketHost stack locally. A simple `pnpm dev` will fire
- `https://pockethost.lvh.me` - Marketing/blog
- `https://app.pockethost.lvh.me` - Dashboard (app)
- `https://mothership.pockethost.lvh.me` - Mothership backend
- `https://*.sfo-1.pockethost.lvh.me` - Instance worker
- `https://*.pockethost.lvh.me` - Instance worker
**Prerequisites**

View File

@ -139,7 +139,7 @@ export const INSTANCE_ADMIN_URL = (instance: InstanceFields) => {
}
export const FTP_URL = (email: string) => {
return `"${email}"@ftp.sfo-1.${PUBLIC_APEX_DOMAIN}:21`
return `"${email}"@ftp.${PUBLIC_APEX_DOMAIN}:21`
}
export const DISCORD_URL = `https://discord.gg/HsSjcuPRWX`

View File

@ -155,7 +155,6 @@ export const checkHealth = async () => {
await send([
`===================`,
`Server: SFO-1`,
`${new Date()}`,
`CPUs: ${cpu.count()}`,
`CPU Usage: ${await cpu.usage()}%`,

View File

@ -130,7 +130,7 @@ export const INSTANCE_ADMIN_URL = (name: string) => {
}
export const FTP_URL = (email: string) => {
return `"${email}"@ftp.sfo-1.${PUBLIC_APEX_DOMAIN}`
return `"${email}"@ftp.${PUBLIC_APEX_DOMAIN}`
}
export const DISCORD_URL = `https://discord.gg/HsSjcuPRWX`