mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-27 07:48:38 +00:00
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import { join } from 'path'
|
|
import { PH_HOME } from 'pockethost/core'
|
|
import { plugin } from './plugin'
|
|
|
|
export const _HOME_DIR =
|
|
process.env.PH_FIREWALL_HOME || join(PH_HOME(), `plugin-ftp-server`)
|
|
|
|
export const TLS_PFX = `tls`
|
|
|
|
export default plugin
|