How To Install Laravel On Linux Ubuntu 12.04 -
i trying install laravel on ubuntu 12.04 . have been following lot of tutorials , same steps. managed download , setting requirements cannot figure out why when want excute laravel.example.com on browser , webpage showed me server not found error.. if put my-ip-adress/laravel/public laravel welcoming page showing index.php
anyone can me this?
website referred - http://tecadmin.net/install-laravel-framework-on-ubuntu/
thank you.
my laravel.example.com.conf :
<virtualhost *:80> servername laravel.example.com serveralias www.laravel.example.com documentroot /var/www/laravel/public <directory /> options followsymlinks allowoverride none </directory> <directory /var/www/laravel> allowoverride </directory> errorlog ${apache_log_dir}/error.log loglevel warn customlog ${apache_log_dir}/access.log combined
my apache2.conf file:
# main apache server configuration file. contains # configuration directives give server instructions. # see http://httpd.apache.org/docs/2.4/ detailed information # directives , /usr/share/doc/apache2/readme.debian debian specific # hints. # # # summary of how apache 2 configuration works in debian: # apache 2 web server configuration in debian quite different # upstream's suggested way configure web server. because debian's # default apache2 installation attempts make adding , removing modules, # virtual hosts, , configuration directives flexible possible, in # order make automating changes , administering server easy # possible. # split several files forming configuration hierarchy outlined # below, located in /etc/apache2/ directory: # # /etc/apache2/ # |-- apache2.conf # | `-- ports.conf # |-- mods-enabled # | |-- *.load # | `-- *.conf # |-- conf-enabled # | `-- *.conf # `-- sites-enabled # `-- *.conf # # # * apache2.conf main configuration file (this file). puts pieces # including remaining configuration files when starting # web server. # # * ports.conf included main configuration file. # supposed determine listening ports incoming connections can # customized anytime. # # * configuration files in mods-enabled/, conf-enabled/ , sites-enabled/ # directories contain particular configuration snippets manage modules, # global configuration fragments, or virtual host configurations, # respectively. # # activated symlinking available configuration files # respective *-available/ counterparts. these should managed using our # helpers a2enmod/a2dismod, a2ensite/a2dissite , a2enconf/a2disconf. see # respective man pages detailed information. # # * binary called apache2. due use of environment variables, in # default configuration, apache2 needs started/stopped # /etc/init.d/apache2 or apache2ctl. calling /usr/bin/apache2 directly not # work default configuration. # global configuration # # # serverroot: top of directory tree under server's # configuration, error, , log files kept. # # note! if intend place on nfs (or otherwise network) # mounted filesystem please read mutex documentation (available # @ <url:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>); # save lot of trouble. # # not add slash @ end of directory path. # #serverroot "/etc/apache2" # # accept serialization lock file must stored on local disk. # mutex file:${apache_lock_dir} default # # pidfile: file in server should record process # identification number when starts. # needs set in /etc/apache2/envvars # pidfile ${apache_pid_file} # # timeout: number of seconds before receives , sends time out. # timeout 300 # # keepalive: whether or not allow persistent connections (more # 1 request per connection). set "off" deactivate. # keepalive on # # maxkeepaliverequests: maximum number of requests allow # during persistent connection. set 0 allow unlimited amount. # recommend leave number high, maximum performance. # maxkeepaliverequests 100 # # keepalivetimeout: number of seconds wait next request # same client on same connection. # keepalivetimeout 5 # these need set in /etc/apache2/envvars user www-data group www-data # # hostnamelookups: log names of clients or ip addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # default off because it'd overall better net if people # had knowingly turn feature on, since enabling means # each client request result in @ least 1 lookup request # nameserver. # hostnamelookups off # errorlog: location of error log file. # if not specify errorlog directive within <virtualhost> # container, error messages relating virtual host # logged here. if *do* define error logfile <virtualhost> # container, host's errors logged there , not here. # errorlog ${apache_log_dir}/error.log # # loglevel: control severity of messages logged error_log. # available values: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. # possible configure log level particular modules, e.g. # "loglevel info ssl:warn" # loglevel warn # include module configuration: includeoptional mods-enabled/*.load includeoptional mods-enabled/*.conf # include list of ports listen on include ports.conf # sets default security model of apache2 httpd server. # not allow access root filesystem outside of /usr/share , /var/www. # former used web applications packaged in debian, # latter may used local directories served web server. if # system serving content sub-directory in /srv must allow # access here, or in related virtual host. <directory /> options followsymlinks allowoverride require denied </directory> <directory /usr/share> allowoverride none require granted </directory> <directory /var/www/public> options indexes followsymlinks directoryindex index.php allowoverride require granted </directory> <directory /var/www/html/laravel/public> options indexes followsymlinks allowoverride require granted </directory> <directory /var/www/laravel> options indexes followsymlinks allowoverride require granted </directory> <directory /var/www> options indexes followsymlinks allowoverride require granted </directory> #<directory /srv/> # options indexes followsymlinks # allowoverride none # require granted #</directory> <directory /var/www/html/bugzilla> addhandler cgi-script .cgi .pl options +indexes +execcgi +followsymlinks directoryindex index.cgi allowoverride fileinfo indexes addtype application/vnd.mozilla.xul+xml .xul addtype application/rdf+xml .rdf order allow,deny allow </directory> perlswitches -wt perlconfigrequire /var/www/html/bugzilla/mod_perl.pl addhandler cgi-script .cgi addtype application/x-httpd-php .php .htm .html adddefaultcharset utf-8 servername 127.0.0.1 # accessfilename: name of file in each directory # additional configuration directives. see allowoverride # directive. # accessfilename .htaccess # # following lines prevent .htaccess , .htpasswd files being # viewed web clients. # <filesmatch "^\.ht"> require denied </filesmatch> # # following directives define format nicknames use # customlog directive. # # these deviate common log format definitions in use %o # (the actual bytes sent including headers) instead of %b (the size of # requested file), because latter makes impossible detect partial # requests. # # note use of %{x-forwarded-for}i instead of %h not recommended. # use mod_remoteip instead. # logformat "%v:%p %h %l %u %t \"%r\" %>s %o \"%{referer}i\" \"%{user-agent}i\"" vhost_combined logformat "%h %l %u %t \"%r\" %>s %o \"%{referer}i\" \"%{user-agent}i\"" combined logformat "%h %l %u %t \"%r\" %>s %o" common logformat "%{referer}i -> %u" referer logformat "%{user-agent}i" agent # include of directories ignores editors' , dpkg's backup files, # see readme.debian details. # include generic snippets of statements includeoptional conf-enabled/*.conf # include virtual host configurations: includeoptional sites-enabled/*.conf # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
may miss step
1 ) sudo gedit /etc/hosts
2 ) add line file , save
127.0.0.1 laravel.example.com
after may forbidden error resolve have change chmod of app/storage directory 777
Comments
Post a Comment