Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
5b9dd43e
You need to sign in or sign up before continuing.
Commit
5b9dd43e
authored
Oct 05, 2019
by
Nick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: import content + x-forwarded toggle
parent
fddde494
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
28 additions
and
2 deletions
+28
-2
admin-general.vue
client/components/admin/admin-general.vue
+13
-0
admin-groups-edit.vue
client/components/admin/admin-groups-edit.vue
+1
-1
admin-utilities-importv1.vue
client/components/admin/admin-utilities-importv1.vue
+0
-0
site-mutation-save-config.gql
client/graph/admin/site/site-mutation-save-config.gql
+2
-0
site-query-config.gql
client/graph/admin/site/site-query-config.gql
+1
-0
data.yml
server/app/data.yml
+1
-0
site.js
server/graph/resolvers/site.js
+7
-0
site.graphql
server/graph/schemas/site.graphql
+2
-0
master.js
server/master.js
+1
-1
No files found.
client/components/admin/admin-general.vue
View file @
5b9dd43e
...
...
@@ -163,6 +163,7 @@
persistent
-
hint
hint
=
'Prevents other websites from embedding your wiki in an iframe. This provides clickjacking protection.'
)
v
-
divider
.
mt
-
3
v
-
switch
(
inset
...
...
@@ -176,6 +177,16 @@
v
-
divider
.
mt
-
3
v
-
switch
(
inset
label
=
'Trust X-Forwarded-* Proxy Headers'
color
=
'red darken-2'
v
-
model
=
'config.securityTrustProxy'
persistent
-
hint
hint
=
'Should be enabled when using a reverse-proxy like nginx, apache, CloudFlare, etc in front of Wiki.js. Turn off otherwise.'
)
v
-
divider
.
mt
-
3
v
-
switch
(
inset
label
=
'Enforce HSTS'
color
=
'red darken-2'
v
-
model
=
'config.securityHSTS'
...
...
@@ -250,6 +261,7 @@ export default {
featureTinyPNG: false,
securityIframe: true,
securityReferrerPolicy: true,
securityTrustProxy: true,
securityHSTS: false,
securityHSTSDuration: 0,
securityCSP: false,
...
...
@@ -296,6 +308,7 @@ export default {
featurePersonalWikis: _.get(this.config, '
featurePersonalWikis
', false),
securityIframe: _.get(this.config, '
securityIframe
', false),
securityReferrerPolicy: _.get(this.config, '
securityReferrerPolicy
', false),
securityTrustProxy: _.get(this.config, '
securityTrustProxy
', false),
securityHSTS: _.get(this.config, '
securityHSTS
', false),
securityHSTSDuration: _.get(this.config, '
securityHSTSDuration
', 0),
securityCSP: _.get(this.config, '
securityCSP
', false),
...
...
client/components/admin/admin-groups-edit.vue
View file @
5b9dd43e
...
...
@@ -18,7 +18,7 @@
v-icon(color='red') mdi-trash-can-outline
v-card
.dialog-header.is-red Delete Group?
v-card-text Are you sure you want to delete group #[strong
{{
group
.
name
}}
]? All users will be unassigned from this group.
v-card-text
.pa-4
Are you sure you want to delete group #[strong
{{
group
.
name
}}
]? All users will be unassigned from this group.
v-card-actions
v-spacer
v-btn(text, @click='deleteGroupDialog = false') Cancel
...
...
client/components/admin/admin-utilities-importv1.vue
View file @
5b9dd43e
This diff is collapsed.
Click to expand it.
client/graph/admin/site/site-mutation-save-config.gql
View file @
5b9dd43e
...
...
@@ -13,6 +13,7 @@ mutation (
$featurePersonalWikis
:
Boolean
!
$securityIframe
:
Boolean
!
$securityReferrerPolicy
:
Boolean
!
$securityTrustProxy
:
Boolean
!
$securityHSTS
:
Boolean
!
$securityHSTSDuration
:
Int
!
$securityCSP
:
Boolean
!
...
...
@@ -34,6 +35,7 @@ mutation (
featurePersonalWikis
:
$featurePersonalWikis
,
securityIframe
:
$securityIframe
,
securityReferrerPolicy
:
$securityReferrerPolicy
,
securityTrustProxy
:
$securityTrustProxy
,
securityHSTS
:
$securityHSTS
,
securityHSTSDuration
:
$securityHSTSDuration
,
securityCSP
:
$securityCSP
,
...
...
client/graph/admin/site/site-query-config.gql
View file @
5b9dd43e
...
...
@@ -15,6 +15,7 @@
featurePersonalWikis
securityIframe
securityReferrerPolicy
securityTrustProxy
securityHSTS
securityHSTSDuration
securityCSP
...
...
server/app/data.yml
View file @
5b9dd43e
...
...
@@ -45,6 +45,7 @@ defaults:
security
:
securityIframe
:
true
securityReferrerPolicy
:
true
securityTrustProxy
:
true
securityHSTS
:
false
securityHSTSDuration
:
300
securityCSP
:
false
...
...
server/graph/resolvers/site.js
View file @
5b9dd43e
...
...
@@ -46,6 +46,7 @@ module.exports = {
WIKI
.
config
.
security
=
{
securityIframe
:
args
.
securityIframe
,
securityReferrerPolicy
:
args
.
securityReferrerPolicy
,
securityTrustProxy
:
args
.
securityTrustProxy
,
securityHSTS
:
args
.
securityHSTS
,
securityHSTSDuration
:
args
.
securityHSTSDuration
,
securityCSP
:
args
.
securityCSP
,
...
...
@@ -53,6 +54,12 @@ module.exports = {
}
await
WIKI
.
configSvc
.
saveToDb
([
'host'
,
'title'
,
'company'
,
'seo'
,
'logo'
,
'features'
,
'security'
])
if
(
WIKI
.
config
.
security
.
securityTrustProxy
)
{
WIKI
.
app
.
enable
(
'trust proxy'
)
}
else
{
WIKI
.
app
.
disable
(
'trust proxy'
)
}
return
{
responseResult
:
graphHelper
.
generateSuccess
(
'Site configuration updated successfully'
)
}
...
...
server/graph/schemas/site.graphql
View file @
5b9dd43e
...
...
@@ -38,6 +38,7 @@ type SiteMutation {
featurePersonalWikis
:
Boolean
!
securityIframe
:
Boolean
!
securityReferrerPolicy
:
Boolean
!
securityTrustProxy
:
Boolean
!
securityHSTS
:
Boolean
!
securityHSTSDuration
:
Int
!
securityCSP
:
Boolean
!
...
...
@@ -64,6 +65,7 @@ type SiteConfig {
featurePersonalWikis
:
Boolean
!
securityIframe
:
Boolean
!
securityReferrerPolicy
:
Boolean
!
securityTrustProxy
:
Boolean
!
securityHSTS
:
Boolean
!
securityHSTSDuration
:
Int
!
securityCSP
:
Boolean
!
...
...
server/master.js
View file @
5b9dd43e
...
...
@@ -48,7 +48,7 @@ module.exports = async () => {
app
.
use
(
mw
.
security
)
app
.
use
(
cors
(
WIKI
.
config
.
cors
))
app
.
options
(
'*'
,
cors
(
WIKI
.
config
.
cors
))
if
(
WIKI
.
config
.
t
rustProxy
)
{
if
(
WIKI
.
config
.
security
.
securityT
rustProxy
)
{
app
.
enable
(
'trust proxy'
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment