Difference between revisions of "HTTP"
Jump to navigation
Jump to search
(Replaced content with "{{techy}}") |
(remove) |
||
Line 1: | Line 1: | ||
{{techy}} | {{techy}} | ||
+ | |||
+ | == Web == | ||
+ | * http://httpstatus.es/ | ||
+ | |||
+ | === Nginx === | ||
+ | * [http://wiki.nginx.org/Resources Resources] | ||
+ | * [http://wiki.nginx.org/FullExample FullExample] | ||
+ | * [http://wiki.nginx.org/VirtualHostExample VirtualHostExample] | ||
+ | * [http://wiki.nginx.org/HttpRewriteModule HttpRewriteModule] - rewriting urls | ||
+ | * [http://wiki.nginx.org/HttpAuthBasicModule HttpAuthBasicModule] - for directory passwords | ||
+ | |||
+ | Enable logging in vhost conf; | ||
+ | [http://wiki.nginx.org/NginxCoreModule#error_log error_log] /var/log/nginx-vhostnamehere.log error; | ||
+ | |||
+ | * http://agentzh.org/misc/nginx/agentzh-nginx-tutorials-enuk.html | ||
+ | |||
+ | === .htaccess === | ||
+ | * [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/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:Interface/Sidebar MediaWiki:Sidebar] | ||
+ | |||
+ | * http://en.wikipedia.org/wiki/Help:Table | ||
+ | |||
+ | ==== Backup ==== | ||
+ | * http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki | ||
+ | |||
+ | nice -n 19 mysqldump -u $USER --password=$PASSWORD $DATABASE -c | nice -n 19 gzip -9 > ~/backup/wiki-$DATABASE-$(date '+%Y%m%d').sql.gz | ||
+ | |||
+ | * http://www.mediawiki.org/wiki/User:Megam0rf/WikiBackup | ||
+ | * http://www.mediawiki.org/wiki/Mw_tools | ||
+ | |||
+ | * http://www.mediawiki.org/wiki/Manual:Restoring_a_wiki_from_backup | ||
+ | |||
+ | === Other CMSs === | ||
+ | * http://oscommerce.com/ | ||
+ | ** https://github.com/osCommerce/oscommerce2 | ||
+ | ** [http://www.opensourcecms.com/scripts/details.php?name=osCommerce&scriptid=94 demo] |
Revision as of 03:18, 15 June 2012
Web
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