# find /etc/nginx -name "*.conf" | xargs grep "https"
/etc/nginx/bx/site_enabled/s1.conf: #if (-f /home/bitrix/www/.htsecure) { rewrite ^(.*)$ https://$host$1 permanent; }
/etc/nginx/bx/site_avaliable/s1.conf: #if (-f /home/bitrix/www/.htsecure) { rewrite ^(.*)$ https://$host$1 permanent; }
/etc/nginx/bx/conf/ssl-push.conf:error_page 497 https://$host$request_uri;
/etc/nginx/bx/conf/ssl.conf:error_page 497 https://$host$request_uri;
/etc/nginx/nginx.conf: #proxy_redirect ~^http://([^:]+):443(/.+)$ https://$1$2;
import {Vuex} from 'ui.vue.vuex';
const store = Vuex.store()
export {store};
//import createMutationsSharer from "vuex-shared-mutations";
//import {Vue} from 'ui.vue';
import {Vuex} from 'ui.vue.vuex';
let storeData = {
// какие-то данные
};
const store = Vuex.store(
{
strict: true, //storeData.config?.env?.stage == 'dev',
debug: true, //storeData.config?.env?.stage == 'dev',
state: Object.assign({
// собственные состояния
}, storeData),
actions: {
// какие-то экшенры
},
mutations: {
// какие-то мутации
},
//plugins: [createMutationsSharer({ predicate: ['update'] })]
});
//
store.dispatch('init');
export {store};