Difference between revisions of "HTTP"
Jump to navigation
Jump to search
(remove) |
|||
Line 1: | Line 1: | ||
{{techy}} | {{techy}} | ||
− | |||
* http://httpstatus.es/ | * http://httpstatus.es/ | ||
− | + | == Nginx == | |
* [http://wiki.nginx.org/Resources Resources] | * [http://wiki.nginx.org/Resources Resources] | ||
* [http://wiki.nginx.org/FullExample FullExample] | * [http://wiki.nginx.org/FullExample FullExample] | ||
Line 16: | Line 15: | ||
* http://agentzh.org/misc/nginx/agentzh-nginx-tutorials-enuk.html | * http://agentzh.org/misc/nginx/agentzh-nginx-tutorials-enuk.html | ||
− | + | == .htaccess == | |
* [http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ Stupid htaccess Tricks] | * [http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/ Stupid htaccess Tricks] | ||
− | + | == MediaWiki == | |
* [http://www.mediawiki.org/wiki/Manual:Short_URL/wiki/Page_title_--_nginx_rewrite--root_access Manual:Short URL/wiki/Page title -- nginx rewrite--root access] | * [http://www.mediawiki.org/wiki/Manual:Short_URL/wiki/Page_title_--_nginx_rewrite--root_access Manual:Short URL/wiki/Page title -- nginx rewrite--root access] | ||
* [http://www.mediawiki.org/wiki/Manual:Short_URL/Page_title_-_nginx,_Root_Access,_PHP_as_a_CGI_module Manual:Short URL/Page title - nginx, Root Access, PHP as a CGI module] | * [http://www.mediawiki.org/wiki/Manual:Short_URL/Page_title_-_nginx,_Root_Access,_PHP_as_a_CGI_module Manual:Short URL/Page title - nginx, Root Access, PHP as a CGI module] | ||
Line 27: | Line 26: | ||
* http://en.wikipedia.org/wiki/Help:Table | * http://en.wikipedia.org/wiki/Help:Table | ||
− | + | === Backup === | |
* http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki | * http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki | ||
Line 37: | Line 36: | ||
* http://www.mediawiki.org/wiki/Manual:Restoring_a_wiki_from_backup | * http://www.mediawiki.org/wiki/Manual:Restoring_a_wiki_from_backup | ||
− | + | == Other CMSs == | |
* http://oscommerce.com/ | * http://oscommerce.com/ | ||
** https://github.com/osCommerce/oscommerce2 | ** https://github.com/osCommerce/oscommerce2 | ||
** [http://www.opensourcecms.com/scripts/details.php?name=osCommerce&scriptid=94 demo] | ** [http://www.opensourcecms.com/scripts/details.php?name=osCommerce&scriptid=94 demo] |
Revision as of 03:25, 15 June 2012
Nginx
- Resources
- FullExample
- VirtualHostExample
- HttpRewriteModule - rewriting urls
- HttpAuthBasicModule - for directory passwords
Enable logging in vhost conf;
error_log /var/log/nginx-vhostnamehere.log error;
.htaccess
MediaWiki
- Manual:Short URL/wiki/Page title -- nginx rewrite--root access
- Manual:Short URL/Page title - nginx, Root Access, PHP as a CGI module
MediaWiki:Sidebar
Backup
nice -n 19 mysqldump -u $USER --password=$PASSWORD $DATABASE -c | nice -n 19 gzip -9 > ~/backup/wiki-$DATABASE-$(date '+%Y%m%d').sql.gz