221 lines
8.7 KiB
Vue
221 lines
8.7 KiB
Vue
<!--
|
|
Copyright 2020 DigitalOcean
|
|
|
|
This code is licensed under the MIT License.
|
|
You may obtain a copy of the License at
|
|
https://github.com/digitalocean/nginxconfig.io/blob/master/LICENSE or https://mit-license.org/
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">Referrer-Policy</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${referrerPolicyChanged ? ' is-changed' : ''}`">
|
|
<VueSelect v-model="referrerPolicy"
|
|
:options="$props.data.referrerPolicy.options"
|
|
:clearable="false"
|
|
></VueSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div :class="`field is-horizontal${hasWordPress && !hasUnsafeEval ? ' is-aligned-top' : ''}`">
|
|
<div class="field-label">
|
|
<label class="label">Content-Security-Policy</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${contentSecurityPolicyChanged ? ' is-changed' : ''}`">
|
|
<input v-model="contentSecurityPolicy"
|
|
class="input"
|
|
type="text"
|
|
:placeholder="$props.data.contentSecurityPolicy.default"
|
|
/>
|
|
</div>
|
|
<template v-if="hasWordPress && !hasUnsafeEval">
|
|
<br />
|
|
<div class="message is-warning">
|
|
<div class="message-body"
|
|
v-html="$t('templates.globalSections.security.whenUsingWordPressUnsafeEvalIsOftenRequiredToAllowFunctionality')"
|
|
></div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">server_tokens</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${serverTokensChanged ? ' is-changed' : ''}`">
|
|
<div class="checkbox">
|
|
<PrettyCheck v-model="serverTokens" class="p-default p-curve p-fill p-icon">
|
|
<i slot="extra" class="icon fas fa-check"></i>
|
|
{{ $t('common.enable') }}
|
|
</PrettyCheck>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">limit_req</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${limitReqChanged ? ' is-changed' : ''}`">
|
|
<div class="checkbox">
|
|
<PrettyCheck v-model="limitReq" class="p-default p-curve p-fill p-icon">
|
|
<i slot="extra" class="icon fas fa-check"></i>
|
|
{{ $t('common.enable') }}
|
|
</PrettyCheck>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">security.txt</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${securityTxt ? ' is-changed' : ''}`">
|
|
<div class="checkbox">
|
|
<PrettyCheck v-model="securityTxt" class="p-default p-curve p-fill p-icon">
|
|
<i slot="extra" class="icon fas fa-check"></i>
|
|
{{ $t('common.enable') }}
|
|
</PrettyCheck>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="$props.data.securityTxt.computed" class="field is-horizontal">
|
|
<div class="field-label">
|
|
<label class="label">security.txt path</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div :class="`control${securityTxtChanged ? ' is-changed' : ''}`">
|
|
<input v-model="securityTxtPath"
|
|
class="input"
|
|
type="text"
|
|
:placeholder="$props.data.securityTxtPath.default"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PrettyCheck from 'pretty-checkbox-vue/check';
|
|
import VueSelect from 'vue-select';
|
|
import delegatedFromDefaults from '../../util/delegated_from_defaults';
|
|
import computedFromDefaults from '../../util/computed_from_defaults';
|
|
|
|
const defaults = {
|
|
referrerPolicy: {
|
|
default: 'no-referrer-when-downgrade',
|
|
options: [
|
|
'no-referrer',
|
|
'no-referrer-when-downgrade',
|
|
'origin',
|
|
'origin-when-cross-origin',
|
|
'same-origin',
|
|
'strict-origin',
|
|
'strict-origin-when-cross-origin',
|
|
'unsafe-url',
|
|
],
|
|
enabled: true,
|
|
},
|
|
contentSecurityPolicy: {
|
|
default: 'default-src \'self\' http: https: data: blob: \'unsafe-inline\'',
|
|
enabled: true,
|
|
},
|
|
serverTokens: {
|
|
default: false,
|
|
enabled: true,
|
|
},
|
|
limitReq: {
|
|
default: false,
|
|
enabled: true,
|
|
},
|
|
securityTxt: {
|
|
default: false,
|
|
enabled: true,
|
|
},
|
|
securityTxtPath: {
|
|
default: '~/security.txt',
|
|
enabled: true,
|
|
},
|
|
};
|
|
|
|
export default {
|
|
name: 'GlobalSecurity', // Component name
|
|
display: 'templates.globalSections.security.security', // Display name for tab (i18n key)
|
|
key: 'security', // Key for data in parent
|
|
delegated: delegatedFromDefaults(defaults), // Data the parent will present here
|
|
components: {
|
|
PrettyCheck,
|
|
VueSelect,
|
|
},
|
|
props: {
|
|
data: Object, // Data delegated back to us from parent
|
|
},
|
|
computed: {
|
|
...computedFromDefaults(defaults, 'security'), // Getters & setters for the delegated data
|
|
hasWordPress() {
|
|
return this.$parent.$parent.$data.domains.some(d => d && d.php.wordPressRules.computed);
|
|
},
|
|
hasUnsafeEval() {
|
|
return this.$props.data.contentSecurityPolicy.computed.includes('\'unsafe-eval\'');
|
|
},
|
|
},
|
|
watch: {
|
|
// Check referrer policy selection is valid
|
|
'$props.data.referrerPolicy': {
|
|
handler(data) {
|
|
// This might cause recursion, but seems not to
|
|
if (data.enabled)
|
|
if (!data.options.includes(data.computed))
|
|
data.computed = data.default;
|
|
},
|
|
deep: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|