Difference between revisions of "Aws"

From Wiki2
Line 15: Line 15:
create a publichtml and set permissions
create a publichtml and set permissions


  [root@openeyeworld home]# chmod ugo+r /home/sitebuil
  [root@openeyeworld home]# chmod 711 /home/sitebuil
  [root@openeyeworld home]# cd sitebuil/
  [root@openeyeworld home]# cd sitebuil/
  [root@openeyeworld sitebuil]# chmod ugo+rx -R public_html
  [root@openeyeworld sitebuil]# chmod ugo+rx -R public_html

Revision as of 16:36, 4 January 2012

name, webserver

mckenna.tim

user, bitnami


ami, server hpkey.pem for cygwin hpkey.ppk for winscp ssh -i .ssh/hpkey.pem ec2-user@ec2-50-17-136-39.compute-1.amazonaws.com

setting up accounts

useradd -d/home/sitebuil sitebuil
passwd sitebuil

create a publichtml and set permissions

[root@openeyeworld home]# chmod 711 /home/sitebuil
[root@openeyeworld home]# cd sitebuil/
[root@openeyeworld sitebuil]# chmod ugo+rx -R public_html

apache etc/httpd.conf setup

<IfModule mod_userdir.c>
	#
	# UserDir is disabled by default since it can confirm the presence
	# of a username on the system (depending on home directory
	# permissions).
	#
	#UserDir disable

	#
	# To enable requests to /~user/ to serve the user's public_html
	# directory, remove the "UserDir disable" line above, and uncomment
	# the following line instead:
	#
	UserDir public_html

</IfModule>

#
# Control access to UserDir directories.  The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory /home/*/public_html>
	AllowOverride FileInfo AuthConfig Limit
	Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
	<Limit GET POST OPTIONS>
		Order allow,deny
		Allow from all
	</Limit>
	<LimitExcept GET POST OPTIONS>
		Order deny,allow
		Deny from all
	</LimitExcept>
</Directory>