Skip to content

Instantly share code, notes, and snippets.

View shijiezhou1's full-sized avatar

Shijie Zhou shijiezhou1

View GitHub Profile
@shijiezhou1
shijiezhou1 / container.js
Last active January 10, 2022 01:27
Vue3 Todo
<template>
<div class="container">
<input
type="text"
v-model="msg"
>
<button @click="Create">Create</button>
<TodoList
:TodoLists="TodoLists"
:Delete="Delete"
@shijiezhou1
shijiezhou1 / app.js
Created October 6, 2020 21:43
Vue3-todo
<template>
<h1>Vue 3 Todo App:</h1>
<Container />
</template>
<script>
import Container from './components/Container';
export default {
name: 'App',
@shijiezhou1
shijiezhou1 / wp_ssl.conf
Created July 5, 2020 09:56
WordPress Https Conf File
server {
listen 443 ssl;
server_name www.example.com example.com; # change example to your domain
ssl_certificate /etc/nginx/conf.d/certification/wp.pem;
ssl_certificate_key /etc/nginx/conf.d/certification/wp.key;
location / {
proxy_pass http://{your-cloud-ip}:8080;
}
@shijiezhou1
shijiezhou1 / docker-compose.yml
Created July 5, 2020 09:48
Oracle with WordPress Docker compose
version: '3.7'
services:
wordpress:
image: wordpress
container_name: wp
restart: always
ports:
- 8080:80
user nginx;
worker_processes 1; # cpu of your server
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
# close iptables
service iptables stop
# prevent iptables restart on boot
chkconfig iptables off
# stop firewall
systemctl stop firewalld.service
# prevent firewall restart on boot
@shijiezhou1
shijiezhou1 / gist:c2ac6836c223819b3ae589abc2caeb50
Created July 1, 2020 13:40
Update Cloud Username and Password
#!/bin/bash
echo root:pass |sudo chpasswd root
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
sudo service sshd restart
# username: root
# password: pass
@shijiezhou1
shijiezhou1 / gist:82540859642fd24e1b5a59f1c4624c15
Created April 13, 2020 14:21
Setup Nginx Configuration For Server
server {
listen 80;
location / {
# if you index.js is listening on port 3000
# or for location
# proxy_pass http://0.0.0.0:3000
proxy_pass http://127.0.0.1:3000
}
}
@shijiezhou1
shijiezhou1 / app.js
Last active April 13, 2020 14:16
Restifyjs Starter
// app.js
const http = require('http');
// Create an instance of the http server to handle HTTP requests
let app = http.createServer((req, res) => {
// Set a response type of plain text for the response
res.writeHead(200, {'Content-Type': 'text/plain'});
// Send back a response and end the connection
@shijiezhou1
shijiezhou1 / serverUbuntu.conf
Created March 6, 2020 03:39
Setting up Ubuntu config file in Nginx with SSL
#
server {
listen 80;
listen [::]:80;
server_name yourdomainname.com www.yourdomainname.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;