9 lines
158 B
Nginx Configuration File
9 lines
158 B
Nginx Configuration File
# nginx.conf
|
|
server {
|
|
listen 80;
|
|
server_name williamscontreras.cl;
|
|
|
|
location / {
|
|
return 301 http://portfolio.williamscontreras.cl;
|
|
}
|
|
} |