Skip to content

Instantly share code, notes, and snippets.

@unicorn667
unicorn667 / SQL_COOKBOOK_TABLE.sql
Last active October 21, 2019 17:06 — forked from YujiShen/SQL_COOKBOOK_TABLE.sql
Table EMP and DEPT of SQL Cookbook for MySQL
CREATE TABLE emp (
empno decimal(4,0) NOT NULL,
ename varchar(10) default NULL,
job varchar(9) default NULL,
mgr decimal(4,0) default NULL,
hiredate date default NULL,
sal decimal(7,2) default NULL,
comm decimal(7,2) default NULL,
deptno decimal(2,0) default NULL
);
@unicorn667
unicorn667 / nginx.conf
Created October 24, 2017 12:01 — forked from Brainiarc7/nginx.conf
Nginx reverse proxy to Exchange 2010/2013
server {
listen 80;
#listen [::]:80;
server_name mail.gwtest.us autodiscover.gwtest.us;
return 301 https://$host$request_uri;
}
server {
listen 443;
#listen [::]:443 ipv6only=on;