This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: nextcloud | |
spec: | |
ports: | |
- port: 80 | |
targetPort: 80 | |
selector: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: nextcloud-shared-storage | |
labels: | |
type: local | |
spec: | |
storageClassName: ncloud | |
capacity: | |
storage: 5Gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: mysql-pass | |
type: Opaque | |
data: | |
password: [your-strong-password] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: mysql | |
spec: | |
ports: | |
- port: 80 | |
targetPort: 3306 | |
selector: | |
app: mysql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: mysql-pv-volume | |
labels: | |
type: local | |
spec: | |
storageClassName: manual | |
capacity: | |
storage: 5Gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: User Info Box | |
Plugin URI: https://messyarray.com | |
Description: Very cool plugin for displaying user information using Gutemberg block. | |
Version: 1.0.0 | |
Author: Aleksej Vukomanovic | |
Author URI: https://messyarray.com | |
License: GPL2 | |
License URI: https://www.gnu.org/licenses/gpl-2.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { sitemapBuilder as buildSitemap } from 'react-router-sitemap'; | |
import routes from '../routes'; | |
import path from 'path'; // add path which will be needed for file write | |
import fs from 'fs'; // import file system object | |
// use your website root address here. Optimally you can | |
// include dev and production enviorenments with variable | |
const hostname = 'http://localhost:3000'; | |
// define our destination folder and sitemap file name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*========================================= | |
Custom Submit Box | |
==========================================*/ | |
/** | |
* Loop throught custom post types and | |
* replace default submit box | |
* | |
* @since 1.0 | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var fontAwesome = {}; | |
fontAwesome["fa-adjust"] = ["f042"]; | |
fontAwesome["fa-adn"] = ["f170"]; | |
fontAwesome["fa-align-center"] = ["f037"]; | |
fontAwesome["fa-align-justify"] = ["f039"]; | |
fontAwesome["fa-align-left"] = ["f036"]; | |
fontAwesome["fa-align-right"] = ["f038"]; | |
fontAwesome["fa-ambulance"] = ["f0f9"]; | |
fontAwesome["fa-anchor"] = ["f13d"]; |