시작 - 관리도구 - 고급 보안이 포함된 Windows 방화벽 을 선택합니다. 위와 같은 화면이 나오는데요 인바운드 규칙의 "파일 및 프린터 공유(에코 요청 - ICMPv4-in)"을 선택하고 규칙 사용을 선택해 주시면 됩니다. 

Posted by 앤비
,

12 07 05

Plan/PostGIS 2012. 7. 6. 16:37

QGIS 설치

Posted by 앤비
,

1) httpd.conf 수정

...

Listen 80

Listen 8080

Listen 8081

Listen 8082

Listen 8083

...

Include conf/VirtualHost.conf


2) VirtualHost.conf 추가

#codeigniter

<VirtualHost *:8080>

        ServerName codeigniter.com

        DocumentRoot "C:/WebRoot/codeigniter/"


<Directory "C:/WebRoot/codeigniter/">

Options Indexes FollowSymLinks

AllowOverride FileInfo

Order allow,deny

Allow from all

</Directory>


</VirtualHost>


#pg

<VirtualHost *:8081>

        ServerName pg.com

        DocumentRoot "C:/WebRoot/pg/"


<Directory "C:/WebRoot/pg/">

Options Indexes FollowSymLinks

AllowOverride FileInfo

Order allow,deny

Allow from all

</Directory>


</VirtualHost>


#pmo

<VirtualHost *:8082>

        ServerName pmo.com

        DocumentRoot "C:/WebRoot/pmo/"


<Directory "C:/WebRoot/pmo/">

Options Indexes FollowSymLinks

AllowOverride FileInfo

Order allow,deny

Allow from all

</Directory>


</VirtualHost>


#ugo

<VirtualHost *:8083>

        ServerName ugo.com

        DocumentRoot "C:/WebRoot/ugo/"


<Directory  "C:/WebRoot/ugo/">

Options Indexes FollowSymLinks

AllowOverride FileInfo

Order allow,deny

Allow from all

</Directory>


</VirtualHost>


Posted by 앤비
,