Re: django deployment in a virtual machine.

2015-02-25 Thread felix

El 25/02/15 12:19, dk escribió:
thanks guys, I installed Apache and I am setting everything,  does my 
project really need to be in /etc/www/



No. It's even not recommended.
or I can put anywhere in the computer? just making sure the 
apache.conf point to that address?





   Basic configuration

Once you’ve got mod_wsgi installed and activated, edit your Apache 
server’s httpd.conf file and add the following. If you are using a 
version of Apache older than 2.4, replace Require all granted with Allow 
from all and also add the line Order deny,allow above it.


WSGIScriptAlias  //path/to/mysite.com/mysite/wsgi.py
WSGIPythonPath  /path/to/mysite.com



Require  all  granted



Cheers,
Felix.

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/54EE1700.2060401%40epepm.cupet.cu.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread James Schneider
I believe a2ensite is a Debian-specific shortcut that allows you to quickly
enable/disable various site configurations through the use of symlinks.

For CentOS you'll need to create a configuration file in your conf.d
directory for your virtual host. I believe it will be included
automatically by httpd when it is restarted, whereas Debian configures
apache to pull configuration files from the sites-enabled directory which
contains symlinks back to the real files in sites-available.

-James
On Feb 25, 2015 11:21 AM, "dk"  wrote:

> looks like centos7 doesn't have or need that,
> it comes with a folder call conf.d
> and if the .conf file I inside this folder,  is like if was activate it.
> =)
>
>
> On Wednesday, February 25, 2015 at 1:01:57 PM UTC-6, Blazor wrote:
>
>> thanks   I am watching
>>> https://www.youtube.com/watch?v=hBMVVruB9Vs
>>> but i am stuck at min 20 since it say that I need to activate the
>>> website, with a2ensite
>>> they gave me a centos7 machine that doesn't have those commands.
>>>
>>
>>
>> a2ensite is basically a shortcut for creating a symbolic link between the
>> sites-available entry you are interested into and the sites-enabled
>> directory. You can do it manually:
>>
>> # as an administrative user
>> cd /etc/apache2/sites-enabled
>> ln -s ../sites-available/
>>
>>
>> B.
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/a7702198-bc1b-4aeb-92a3-0a673979d04f%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciUc7xNTPVpSrmzku%3DiXU-3DCyO%2BLHz0Z70tnNo2GUPrEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread dk
looks like centos7 doesn't have or need that, 
it comes with a folder call conf.d 
and if the .conf file I inside this folder,  is like if was activate it.  =)


On Wednesday, February 25, 2015 at 1:01:57 PM UTC-6, Blazor wrote:

> thanks   I am watching 
>> https://www.youtube.com/watch?v=hBMVVruB9Vs
>> but i am stuck at min 20 since it say that I need to activate the 
>> website, with a2ensite 
>> they gave me a centos7 machine that doesn't have those commands.
>>
>
>
> a2ensite is basically a shortcut for creating a symbolic link between the 
> sites-available entry you are interested into and the sites-enabled 
> directory. You can do it manually:
>
> # as an administrative user
> cd /etc/apache2/sites-enabled
> ln -s ../sites-available/
>
>
> B.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a7702198-bc1b-4aeb-92a3-0a673979d04f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread Blazor

>
> thanks   I am watching 
> https://www.youtube.com/watch?v=hBMVVruB9Vs
> but i am stuck at min 20 since it say that I need to activate the website, 
> with a2ensite 
> they gave me a centos7 machine that doesn't have those commands.
>


a2ensite is basically a shortcut for creating a symbolic link between the 
sites-available entry you are interested into and the sites-enabled 
directory. You can do it manually:

# as an administrative user
cd /etc/apache2/sites-enabled
ln -s ../sites-available/


B.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7c2d6dcb-e542-4f43-8907-94485f4f0f4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread dk
thanks   I am watching 
https://www.youtube.com/watch?v=hBMVVruB9Vs
but i am stuck at min 20 since it say that I need to activate the website, 
with a2ensite 
they gave me a centos7 machine that doesn't have those commands.


On Wednesday, February 25, 2015 at 11:39:01 AM UTC-6, Andrew Farrell wrote:

>  Linode 
> 
>  and Digital Ocean 
> 
>  both 
> have good tutorials on setting up a production deployment of Django on a 
> virtual private server.
>
> On Wed, Feb 25, 2015 at 11:29 AM, Rodrigo Zayit  > wrote:
>
>> anywhere
>>
>>
>> Atenciosamente,
>> Rodrigo de Oliveira
>>
>> On Wed, Feb 25, 2015 at 2:19 PM, dk > 
>> wrote:
>>
>>> thanks guys, I installed Apache and I am setting everything,  does my 
>>> project really need to be in /etc/www/
>>>
>>> or I can put anywhere in the computer? just making sure the apache.conf 
>>> point to that address?
>>>
>>>
>>>
>>> On Wednesday, February 25, 2015 at 6:29:25 AM UTC-6, Fernando Ramos 
>>> wrote:
>>>
 If there's more than one person using it your site will only grow. The 
 Django web server is meant for debugging, not production.
 Go the extra step and setup ngnix or another simple http server. You 
 will thank yourself later.


 El martes, 24 de febrero de 2015, 14:49:16 (UTC-7), dk escribió:
>
> its just a website with one link =)
> basicly shows one graph. and that's it.
>
> On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:
>
>> not production i hope.
>>
>> in prod use nginx. if not on prod use runserver 0.0.0.0:8000
>> Em 24/02/2015 18:37, "dk"  escreveu:
>>
>>> I got a virtual machine with Linux centos that we are going to use 
>>> for our django webpage.  
>>> that machine will have the html service on. so when people go to the 
>>> computer typing the IP, will show them the webpage. is there any 
>>> special 
>>> trick to do? like make a service that lunch manage.py with the 
>>> runserver 
>>> command?
>>> if any one can point me to a webpage I will appreciate.
>>>
>>> thanks guys.
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, 
>>> send an email to django-users...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/e3255fbf-
>>> 27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com 
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>  -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to django-users...@googlegroups.com .
>>> To post to this group, send email to django...@googlegroups.com 
>>> .
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/5f1533ca-afee-4779-914e-6632931cea10%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>  -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAL6GM4%2B4dryN7oOtD%2Bmejc0NUrDZrgf6wUEORtq6dGjfMSGosg%40mail.gmail.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at h

Re: django deployment in a virtual machine.

2015-02-25 Thread Andrew Farrell
 Linode

 and Digital Ocean

both
have good tutorials on setting up a production deployment of Django on a
virtual private server.

On Wed, Feb 25, 2015 at 11:29 AM, Rodrigo Zayit 
wrote:

> anywhere
>
>
> Atenciosamente,
> Rodrigo de Oliveira
>
> On Wed, Feb 25, 2015 at 2:19 PM, dk  wrote:
>
>> thanks guys, I installed Apache and I am setting everything,  does my
>> project really need to be in /etc/www/
>>
>> or I can put anywhere in the computer? just making sure the apache.conf
>> point to that address?
>>
>>
>>
>> On Wednesday, February 25, 2015 at 6:29:25 AM UTC-6, Fernando Ramos wrote:
>>
>>> If there's more than one person using it your site will only grow. The
>>> Django web server is meant for debugging, not production.
>>> Go the extra step and setup ngnix or another simple http server. You
>>> will thank yourself later.
>>>
>>>
>>> El martes, 24 de febrero de 2015, 14:49:16 (UTC-7), dk escribió:

 its just a website with one link =)
 basicly shows one graph. and that's it.

 On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:

> not production i hope.
>
> in prod use nginx. if not on prod use runserver 0.0.0.0:8000
> Em 24/02/2015 18:37, "dk"  escreveu:
>
>> I got a virtual machine with Linux centos that we are going to use
>> for our django webpage.
>> that machine will have the html service on. so when people go to the
>> computer typing the IP, will show them the webpage. is there any special
>> trick to do? like make a service that lunch manage.py with the runserver
>> command?
>> if any one can point me to a webpage I will appreciate.
>>
>> thanks guys.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to django-users...@googlegroups.com.
>> To post to this group, send email to django...@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%
>> 40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/5f1533ca-afee-4779-914e-6632931cea10%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAL6GM4%2B4dryN7oOtD%2Bmejc0NUrDZrgf6wUEORtq6dGjfMSGosg%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2By5TLY2Sa2ponpCV1DyxbsoVkd%3DAdVgwmid_VUpDmMkGvX9%2Bw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread Rodrigo Zayit
anywhere


Atenciosamente,
Rodrigo de Oliveira

On Wed, Feb 25, 2015 at 2:19 PM, dk  wrote:

> thanks guys, I installed Apache and I am setting everything,  does my
> project really need to be in /etc/www/
>
> or I can put anywhere in the computer? just making sure the apache.conf
> point to that address?
>
>
>
> On Wednesday, February 25, 2015 at 6:29:25 AM UTC-6, Fernando Ramos wrote:
>
>> If there's more than one person using it your site will only grow. The
>> Django web server is meant for debugging, not production.
>> Go the extra step and setup ngnix or another simple http server. You will
>> thank yourself later.
>>
>>
>> El martes, 24 de febrero de 2015, 14:49:16 (UTC-7), dk escribió:
>>>
>>> its just a website with one link =)
>>> basicly shows one graph. and that's it.
>>>
>>> On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:
>>>
 not production i hope.

 in prod use nginx. if not on prod use runserver 0.0.0.0:8000
 Em 24/02/2015 18:37, "dk"  escreveu:

> I got a virtual machine with Linux centos that we are going to use for
> our django webpage.
> that machine will have the html service on. so when people go to the
> computer typing the IP, will show them the webpage. is there any special
> trick to do? like make a service that lunch manage.py with the runserver
> command?
> if any one can point me to a webpage I will appreciate.
>
> thanks guys.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users...@googlegroups.com.
> To post to this group, send email to django...@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%
> 40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/5f1533ca-afee-4779-914e-6632931cea10%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAL6GM4%2B4dryN7oOtD%2Bmejc0NUrDZrgf6wUEORtq6dGjfMSGosg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread dk
thanks guys, I installed Apache and I am setting everything,  does my 
project really need to be in /etc/www/

or I can put anywhere in the computer? just making sure the apache.conf 
point to that address?



On Wednesday, February 25, 2015 at 6:29:25 AM UTC-6, Fernando Ramos wrote:

> If there's more than one person using it your site will only grow. The 
> Django web server is meant for debugging, not production.
> Go the extra step and setup ngnix or another simple http server. You will 
> thank yourself later.
>
>
> El martes, 24 de febrero de 2015, 14:49:16 (UTC-7), dk escribió:
>>
>> its just a website with one link =)
>> basicly shows one graph. and that's it.
>>
>> On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:
>>
>>> not production i hope.
>>>
>>> in prod use nginx. if not on prod use runserver 0.0.0.0:8000
>>> Em 24/02/2015 18:37, "dk"  escreveu:
>>>
 I got a virtual machine with Linux centos that we are going to use for 
 our django webpage.  
 that machine will have the html service on. so when people go to the 
 computer typing the IP, will show them the webpage. is there any special 
 trick to do? like make a service that lunch manage.py with the runserver 
 command?
 if any one can point me to a webpage I will appreciate.

 thanks guys.

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to django-users...@googlegroups.com.
 To post to this group, send email to django...@googlegroups.com.
 Visit this group at http://groups.google.com/group/django-users.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/5f1533ca-afee-4779-914e-6632931cea10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread Fernando Ramos
If there's more than one person using it your site will only grow. The 
Django web server is meant for debugging, not production.
Go the extra step and setup ngnix or another simple http server. You will 
thank yourself later.


El martes, 24 de febrero de 2015, 14:49:16 (UTC-7), dk escribió:
>
> its just a website with one link =)
> basicly shows one graph. and that's it.
>
> On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:
>
>> not production i hope.
>>
>> in prod use nginx. if not on prod use runserver 0.0.0.0:8000
>> Em 24/02/2015 18:37, "dk"  escreveu:
>>
>>> I got a virtual machine with Linux centos that we are going to use for 
>>> our django webpage.  
>>> that machine will have the html service on. so when people go to the 
>>> computer typing the IP, will show them the webpage. is there any special 
>>> trick to do? like make a service that lunch manage.py with the runserver 
>>> command?
>>> if any one can point me to a webpage I will appreciate.
>>>
>>> thanks guys.
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to django-users...@googlegroups.com.
>>> To post to this group, send email to django...@googlegroups.com.
>>> Visit this group at http://groups.google.com/group/django-users.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/a505ef16-3405-411b-a5d8-b9508b31680b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-25 Thread aRkadeFR

Hello there,

It's always good to take a look at how prodding a django website.

As George Silva said, you need nginx/apache or other. They will serve
your media and static files. Then for the django server, you need
to run it in uWSGI or another wsgi, and link it to your nginx/apache.

http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html

Have fun :)

On 02/24/2015 10:49 PM, dk wrote:

its just a website with one link =)
basicly shows one graph. and that's it.

On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:

not production i hope.

in prod use nginx. if not on prod use runserver 0.0.0.0:8000


Em 24/02/2015 18:37, "dk" > escreveu:

I got a virtual machine with Linux centos that we are going to
use for our django webpage.
that machine will have the html service on. so when people go
to the computer typing the IP, will show them the webpage. is
there any special trick to do? like make a service that lunch
manage.py with the runserver command?
if any one can point me to a webpage I will appreciate.

thanks guys.
-- 
You received this message because you are subscribed to the

Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from
it, send an email to django-users...@googlegroups.com
.
To post to this group, send email to
django...@googlegroups.com .
Visit this group at
http://groups.google.com/group/django-users
.
To view this discussion on the web visit

https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com

.
For more options, visit https://groups.google.com/d/optout
.

--
You received this message because you are subscribed to the Google 
Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to django-users+unsubscr...@googlegroups.com 
.
To post to this group, send email to django-users@googlegroups.com 
.

Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bf9c8f15-7206-4932-95c9-d5c8bc82af9b%40googlegroups.com 
.

For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/54ED85B1.2020507%40arkade.info.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-24 Thread dk
its just a website with one link =)
basicly shows one graph. and that's it.

On Tuesday, February 24, 2015 at 3:41:14 PM UTC-6, george wrote:

> not production i hope.
>
> in prod use nginx. if not on prod use runserver 0.0.0.0:8000
> Em 24/02/2015 18:37, "dk" > escreveu:
>
>> I got a virtual machine with Linux centos that we are going to use for 
>> our django webpage.  
>> that machine will have the html service on. so when people go to the 
>> computer typing the IP, will show them the webpage. is there any special 
>> trick to do? like make a service that lunch manage.py with the runserver 
>> command?
>> if any one can point me to a webpage I will appreciate.
>>
>> thanks guys.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bf9c8f15-7206-4932-95c9-d5c8bc82af9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django deployment in a virtual machine.

2015-02-24 Thread George Silva
not production i hope.

in prod use nginx. if not on prod use runserver 0.0.0.0:8000
Em 24/02/2015 18:37, "dk"  escreveu:

> I got a virtual machine with Linux centos that we are going to use for our
> django webpage.
> that machine will have the html service on. so when people go to the
> computer typing the IP, will show them the webpage. is there any special
> trick to do? like make a service that lunch manage.py with the runserver
> command?
> if any one can point me to a webpage I will appreciate.
>
> thanks guys.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGyPVTufYFmrBfP%3DO7%3DCsmOJTocginHZq%2BUSxdnGu5zZpq9XaA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


django deployment in a virtual machine.

2015-02-24 Thread dk
I got a virtual machine with Linux centos that we are going to use for our 
django webpage.  
that machine will have the html service on. so when people go to the 
computer typing the IP, will show them the webpage. is there any special 
trick to do? like make a service that lunch manage.py with the runserver 
command?
if any one can point me to a webpage I will appreciate.

thanks guys.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e3255fbf-27c2-4ac5-bec6-939b9a8744cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.