This file contains 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
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# http://wiki.nginx.org/Pitfalls | |
# http://wiki.nginx.org/QuickStart | |
# http://wiki.nginx.org/Configuration | |
# | |
# Generally, you will want to move this file somewhere, and start with a clean | |
# file but keep this around for reference. Or just disable in sites-enabled. | |
# |
This file contains 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
docker exec -it unms-postgres psql -U unms -d unms -t -c "SELECT group_id FROM access_group_site LIMIT 1;" > site_group.txt |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
This file contains 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 MySQLdb | |
import os | |
import sys | |
from sqlalchemy import create_engine, MetaData | |
from sqlalchemy.sql import text | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy import Column, String, Integer, Date, Table, ForeignKey, Float | |
from sqlalchemy.orm import relationship | |
from sqlalchemy.ext.declarative import declarative_base | |
from urllib import quote_plus as urlquote |
NewerOlder