LoginSignup
0
0

More than 5 years have passed since last update.

Nginx

Posted at
$ yum install nginx
$ vi /etc/nginx/conf.d/virtual.conf
$ sudo /sbin/service nginx start
conf.d/virtual.conf
server {
    listen       80;
    server_name  example.org  www.example.org;
    ...
}

location / {
  root /home/hoge/;
  index index.html;
}

試してみたい

apacheのリバースプロキシ
http://www1205uf.sakura.ne.jp/wp/world/?p=96

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0