Apache에서 단일 IP로 여러 사이트 실행 +swagger 설치
하고 싶은 일
Apache에서 단일 IP에 대해 여러 사이트를 실행하고 싶습니다.
전제 조건
새로운 사이트 TOP을 우선 놓는다
touch /var/www/html/index.html //適当にHelloとか書いておく
vhost 추가 + 대상 변경
/etc/httpd/conf.d
cp -apr vhosts-redmine.conf vhosts-swagger.conf //コピーする
#NameVirtualHost *:80
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/html
</VirtualHost>
DNS 등록이 필요하므로 local hosts에 도메인 등록
172.26.6.94 swagger.local
이렇게하면 이름 확인이 불가능해도 대상 서버에 연결할 수 있습니다.
안전하게 표시됨
swagger 구축
composer
[root@redmine01 conf.d]# composer
______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer version 1.9.0 2019-08-02 20:55:32
swagger 설치
composer require zircote/swagger-php
Using version ^3.0 for zircote/swagger-php
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 6 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.12.0): Downloading (100%)
- Installing symfony/yaml (v4.3.5): Downloading (100%)
- Installing symfony/finder (v4.3.5): Downloading (100%)
- Installing doctrine/lexer (1.1.0): Downloading (100%)
- Installing doctrine/annotations (v1.8.0): Downloading (100%)
- Installing zircote/swagger-php (3.0.2): Downloading (100%)
symfony/yaml suggests installing symfony/console (For validating YAML files using the lint command)
Writing lock file
Generating autoload files
swagger-UI 설치
vim /etc/httpd/conf.d/vhosts-swagger.conf
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/swagger/swagger-ui/dist //DocRootを向けかえ
</VirtualHost>
액세스 확인
Reference
이 문제에 관하여(Apache에서 단일 IP로 여러 사이트 실행 +swagger 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/sota/items/212d4d3ce925242ac0c0
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
touch /var/www/html/index.html //適当にHelloとか書いておく
/etc/httpd/conf.d
cp -apr vhosts-redmine.conf vhosts-swagger.conf //コピーする
#NameVirtualHost *:80
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/html
</VirtualHost>
DNS 등록이 필요하므로 local hosts에 도메인 등록
172.26.6.94 swagger.local
이렇게하면 이름 확인이 불가능해도 대상 서버에 연결할 수 있습니다.
안전하게 표시됨
swagger 구축
composer
[root@redmine01 conf.d]# composer
______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer version 1.9.0 2019-08-02 20:55:32
swagger 설치
composer require zircote/swagger-php
Using version ^3.0 for zircote/swagger-php
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 6 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.12.0): Downloading (100%)
- Installing symfony/yaml (v4.3.5): Downloading (100%)
- Installing symfony/finder (v4.3.5): Downloading (100%)
- Installing doctrine/lexer (1.1.0): Downloading (100%)
- Installing doctrine/annotations (v1.8.0): Downloading (100%)
- Installing zircote/swagger-php (3.0.2): Downloading (100%)
symfony/yaml suggests installing symfony/console (For validating YAML files using the lint command)
Writing lock file
Generating autoload files
swagger-UI 설치
vim /etc/httpd/conf.d/vhosts-swagger.conf
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/swagger/swagger-ui/dist //DocRootを向けかえ
</VirtualHost>
액세스 확인
Reference
이 문제에 관하여(Apache에서 단일 IP로 여러 사이트 실행 +swagger 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/sota/items/212d4d3ce925242ac0c0
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
172.26.6.94 swagger.local
swagger 구축
composer
[root@redmine01 conf.d]# composer
______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer version 1.9.0 2019-08-02 20:55:32
swagger 설치
composer require zircote/swagger-php
Using version ^3.0 for zircote/swagger-php
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 6 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.12.0): Downloading (100%)
- Installing symfony/yaml (v4.3.5): Downloading (100%)
- Installing symfony/finder (v4.3.5): Downloading (100%)
- Installing doctrine/lexer (1.1.0): Downloading (100%)
- Installing doctrine/annotations (v1.8.0): Downloading (100%)
- Installing zircote/swagger-php (3.0.2): Downloading (100%)
symfony/yaml suggests installing symfony/console (For validating YAML files using the lint command)
Writing lock file
Generating autoload files
swagger-UI 설치
vim /etc/httpd/conf.d/vhosts-swagger.conf
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/swagger/swagger-ui/dist //DocRootを向けかえ
</VirtualHost>
액세스 확인
Reference
이 문제에 관하여(Apache에서 단일 IP로 여러 사이트 실행 +swagger 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/sota/items/212d4d3ce925242ac0c0
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
[root@redmine01 conf.d]# composer
______
/ ____/___ ____ ___ ____ ____ ________ _____
/ / / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/
/ /___/ /_/ / / / / / / /_/ / /_/ (__ ) __/ /
\____/\____/_/ /_/ /_/ .___/\____/____/\___/_/
/_/
Composer version 1.9.0 2019-08-02 20:55:32
composer require zircote/swagger-php
Using version ^3.0 for zircote/swagger-php
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 6 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.12.0): Downloading (100%)
- Installing symfony/yaml (v4.3.5): Downloading (100%)
- Installing symfony/finder (v4.3.5): Downloading (100%)
- Installing doctrine/lexer (1.1.0): Downloading (100%)
- Installing doctrine/annotations (v1.8.0): Downloading (100%)
- Installing zircote/swagger-php (3.0.2): Downloading (100%)
symfony/yaml suggests installing symfony/console (For validating YAML files using the lint command)
Writing lock file
Generating autoload files
vim /etc/httpd/conf.d/vhosts-swagger.conf
<VirtualHost *:80>
ServerName swagger.local
DocumentRoot /var/www/swagger/swagger-ui/dist //DocRootを向けかえ
</VirtualHost>
Reference
이 문제에 관하여(Apache에서 단일 IP로 여러 사이트 실행 +swagger 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sota/items/212d4d3ce925242ac0c0텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)