| 688 | | Not if you just want to play around and develop things on your local computer. |
| 689 | | Django comes with its own Web server, and things should Just Work. |
| 690 | | |
| 691 | | Non se intendi sviluppare applicazioni di prova o applicazioni che nascono per |
| 692 | | essere usate sul computer locale. Django integra un server Web, e il sistema |
| 693 | | dovrebbe semplicemente funzionare ed essere pronto per l'uso. |
| 694 | | |
| 695 | | .. |
| 696 | | For production use, though, we recommend mod_python. The Django developers have |
| 697 | | been running it on mod_python for several years, and it's quite stable. |
| 698 | | |
| 699 | | Per ambienti di produzione, tuttavia, raccomandiamo mod_python. Gli |
| 700 | | sviluppatori di Django stanno usando mod_python da diversi anni, e come |
| 701 | | soluzione è risultata ampiamente stabile. |
| 702 | | |
| 703 | | .. |
| 704 | | However, if you don't want to use mod_python, you can use a different server, |
| 705 | | as long as that server has WSGI_ hooks. See the `server arrangements wiki page`_. |
| 706 | | |
| 707 | | Se però non vuoi usare mod_python, puoi usare un server differente, purché |
| 708 | | offra gli hook WSGI_. Consulta la `pagina del wiki sulle configurazioni dei |
| 709 | | server`_. |
| | 688 | Although we recommend mod_python for production use, you don't have to use it, |
| | 689 | thanks to the fact that Django uses an arrangement called WSGI_. Django can |
| | 690 | talk to any WSGI-enabled server. The most common non-mod_python deployment |
| | 691 | setup is FastCGI. See `How to use Django with FastCGI`_ for full information. |
| | 692 | |
| | 693 | Sebbene noi raccomandiamo mod_python per applicazioni in ambiente di produzione, non |
| | 694 | hai l'obbligo di utilizzarlo, poiché Django è predisposto per funzionare in una |
| | 695 | modalità chiamata WSGI_. Django è in grado di comunicare con qualsiasi |
| | 696 | server abilitato WSGI. La configurazione più comune che non è basata su mod_python è |
| | 697 | FastCGI. Vedi `Come usare Django con FastCGI`_ per maggiori dettagli. |
| | 698 | |
| | 699 | .. Also, see the `server arrangements wiki page`_ for other deployment strategies. |
| | 700 | |
| | 701 | Inoltre, puoi consultare la `pagina del wiki sulle configurazioni dei server`_ se |
| | 702 | sei interessato ad altri tipi di configurazione. |
| | 703 | |
| | 704 | .. |
| | 705 | If you just want to play around and develop things on your local computer, use |
| | 706 | the development Web server that comes with Django. Things should Just Work. |
| | 707 | |
| | 708 | Se vuoi solo fare esperimenti e sviluppare applicazioni per utilizzo locale usa |
| | 709 | il server Web di sviluppo fornito assieme a Django. Dovrebbe semplicemente funzionare. |