ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
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
[options] | |
; This is the password that allows database operations: | |
admin_passwd = admin | |
db_host = localhost | |
db_port = 5432 | |
db_user = username | |
db_password = password | |
addons_path = /opt/openerp/odoo/addons,/home/yaser/odoo/addons | |
;Log settings | |
logfile = /var/log/openerp/openerp-server.log |
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
[user] | |
name = Name | |
email = Email | |
[color] | |
ui = true | |
[github] | |
user = Username |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- # | |
from __future__ import unicode_literals | |
AUTHOR = u'Yaser Alraddadi' | |
SITENAME = u"Yaser Alraddadi's Blog" | |
SITEURL = 'www.yr.sa' | |
TIMEZONE = 'Asia/Riyadh' |
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
<VirtualHost *:80> | |
ServerName www.yr.com | |
ServerAdmin [email protected] | |
DocumentRoot /home/yaser/site-name/www | |
RewriteEngine on | |
ProxyPreserveHost On | |
RewriteCond $1 !^/(img|css|js|robots\.txt|media|static|s)/ | |
RewriteRule ^(.*) http://localhost:8008$1 [P] | |
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
[program:site_name] | |
directory=/home/yaser/django/site_name/site_name/ | |
command=/home/yaser/env/bin/gunicorn apps.wsgi:application -b 127.0.0.1:8008 | |
user=yaser | |
autostart=true | |
autorestart=true | |
redirect_stderr=True | |
environment=VAR1='', VAR2='' |
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
upstream app_servers { | |
server 127.0.0.1:8008; | |
} | |
server { | |
listen 80; | |
server_name www.yr.sa; | |
index index.html; | |
location = /favicon.ico { |
NewerOlder