new changes
This commit is contained in:
@@ -46,6 +46,11 @@ export function SitePage() {
|
||||
ps: string
|
||||
php_version: string
|
||||
force_https: boolean
|
||||
proxy_upstream: string
|
||||
proxy_websocket: boolean
|
||||
dir_auth_path: string
|
||||
dir_auth_user_file: string
|
||||
php_deny_execute: boolean
|
||||
} | null>(null)
|
||||
const [editLoading, setEditLoading] = useState(false)
|
||||
const [editError, setEditError] = useState('')
|
||||
@@ -241,6 +246,11 @@ export function SitePage() {
|
||||
ps: s.ps || '',
|
||||
php_version: s.php_version || '74',
|
||||
force_https: !!(s.force_https && s.force_https !== 0),
|
||||
proxy_upstream: s.proxy_upstream || '',
|
||||
proxy_websocket: !!(s.proxy_websocket && Number(s.proxy_websocket) !== 0),
|
||||
dir_auth_path: s.dir_auth_path || '',
|
||||
dir_auth_user_file: s.dir_auth_user_file || '',
|
||||
php_deny_execute: !!(s.php_deny_execute && Number(s.php_deny_execute) !== 0),
|
||||
})
|
||||
)
|
||||
.catch((err) => setEditError(err.message))
|
||||
@@ -262,6 +272,11 @@ export function SitePage() {
|
||||
ps: editForm.ps || undefined,
|
||||
php_version: editForm.php_version,
|
||||
force_https: editForm.force_https,
|
||||
proxy_upstream: editForm.proxy_upstream,
|
||||
proxy_websocket: editForm.proxy_websocket,
|
||||
dir_auth_path: editForm.dir_auth_path,
|
||||
dir_auth_user_file: editForm.dir_auth_user_file,
|
||||
php_deny_execute: editForm.php_deny_execute,
|
||||
})
|
||||
.then(() => {
|
||||
setEditSiteId(null)
|
||||
@@ -415,6 +430,31 @@ export function SitePage() {
|
||||
Force HTTPS (redirect HTTP to HTTPS)
|
||||
</label>
|
||||
</div>
|
||||
<hr className="my-3" />
|
||||
<p className="small text-secondary mb-2">Reverse proxy (optional): leave empty for PHP/static site.</p>
|
||||
<div className="mb-3">
|
||||
<label className="form-label">Upstream URL</label>
|
||||
<input name="proxy_upstream" type="text" className="form-control" placeholder="http://127.0.0.1:3000" />
|
||||
</div>
|
||||
<div className="form-check mb-3">
|
||||
<input name="proxy_websocket" type="checkbox" id="create_proxy_ws" className="form-check-input" />
|
||||
<label htmlFor="create_proxy_ws" className="form-check-label">
|
||||
WebSocket headers (Upgrade)
|
||||
</label>
|
||||
</div>
|
||||
<p className="small text-secondary mb-2">Directory HTTP auth (requires htpasswd file on server).</p>
|
||||
<div className="mb-2">
|
||||
<input name="dir_auth_path" type="text" className="form-control form-control-sm" placeholder="Path prefix e.g. /staff" />
|
||||
</div>
|
||||
<div className="mb-3">
|
||||
<input name="dir_auth_user_file" type="text" className="form-control form-control-sm" placeholder="Absolute path to htpasswd" />
|
||||
</div>
|
||||
<div className="form-check mb-3">
|
||||
<input name="php_deny_execute" type="checkbox" id="create_php_deny" className="form-check-input" />
|
||||
<label htmlFor="create_php_deny" className="form-check-label">
|
||||
Block PHP execution under /uploads and /storage
|
||||
</label>
|
||||
</div>
|
||||
<div className="mb-0">
|
||||
<label className="form-label">Note (optional)</label>
|
||||
<input name="ps" type="text" placeholder="My website" className="form-control" />
|
||||
@@ -900,6 +940,59 @@ export function SitePage() {
|
||||
Force HTTPS
|
||||
</label>
|
||||
</div>
|
||||
<hr className="my-2" />
|
||||
<div className="mb-2">
|
||||
<label className="form-label small">Reverse proxy upstream</label>
|
||||
<input
|
||||
value={editForm.proxy_upstream}
|
||||
onChange={(e) => setEditForm({ ...editForm, proxy_upstream: e.target.value })}
|
||||
type="text"
|
||||
className="form-control form-control-sm"
|
||||
placeholder="http://127.0.0.1:3000"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-check mb-3">
|
||||
<input
|
||||
type="checkbox"
|
||||
id="edit_proxy_ws"
|
||||
className="form-check-input"
|
||||
checked={editForm.proxy_websocket}
|
||||
onChange={(e) => setEditForm({ ...editForm, proxy_websocket: e.target.checked })}
|
||||
/>
|
||||
<label htmlFor="edit_proxy_ws" className="form-check-label small">
|
||||
WebSocket proxy headers
|
||||
</label>
|
||||
</div>
|
||||
<div className="mb-2">
|
||||
<label className="form-label small">Auth path prefix</label>
|
||||
<input
|
||||
value={editForm.dir_auth_path}
|
||||
onChange={(e) => setEditForm({ ...editForm, dir_auth_path: e.target.value })}
|
||||
type="text"
|
||||
className="form-control form-control-sm"
|
||||
/>
|
||||
</div>
|
||||
<div className="mb-3">
|
||||
<label className="form-label small">htpasswd file path</label>
|
||||
<input
|
||||
value={editForm.dir_auth_user_file}
|
||||
onChange={(e) => setEditForm({ ...editForm, dir_auth_user_file: e.target.value })}
|
||||
type="text"
|
||||
className="form-control form-control-sm"
|
||||
/>
|
||||
</div>
|
||||
<div className="form-check mb-3">
|
||||
<input
|
||||
type="checkbox"
|
||||
id="edit_php_deny"
|
||||
className="form-check-input"
|
||||
checked={editForm.php_deny_execute}
|
||||
onChange={(e) => setEditForm({ ...editForm, php_deny_execute: e.target.checked })}
|
||||
/>
|
||||
<label htmlFor="edit_php_deny" className="form-check-label small">
|
||||
Deny PHP under /uploads and /storage
|
||||
</label>
|
||||
</div>
|
||||
<div className="mb-0">
|
||||
<label className="form-label">Note (optional)</label>
|
||||
<input
|
||||
|
||||
Reference in New Issue
Block a user