본문 바로가기
반응형

linux28

ftp 디렉토리 download ftp서버가 업그레이드 된후에 ftp mget 명령어에  wildcard를 포함하면 아래와 같은 에러가 발생한다.ftp> mget *txtCan't check for file existenceftp> mget *.txtCan't check for file existence관련 내용 : https://stackoverflow.com/a/58019755 Batch FTP mget command not working with wildcard?I have written a batch script that logs into my ftp server, then navigates to a directory. I am having trouble with the mget command, I want it to downl.. 2024. 8. 22.
websocket wss nginx 403에러 nginx reverse proxy 설정으로 서버를 구성한 상태에서ws:// 일 경우에는 문제없이 정상적으로 서비스가 되지만wss://에서 403 에러가 발생했다.wss://시에도 정상적으로 서비스를 위해서는 아래 header추가가 필요하다  -  proxy_set_header Origin '';nginx  서버 : 192.168.0.7application서버 : 192.168.0.8 NGINX 설정 server { listen 80; listen 443 ssl; server_name test.karint.dev; ssl_certificate cert/all_dev.crt; ssl_certificate_key cert/dev.key; .. 2024. 6. 26.
nginx 수동 ip설정 header에 X-Forwarded-For 항목을 추가하면 된다. proxy_set_header X-Forwarded-For 192.168.1.1; upstream serverBackend { server localhost:7220; } server { listen 80; server www.karint.local; location / { add_header Referrer-Policy ""; proxy_pass http://serverBackend/; proxy_set_header X-Forwarded-For 192.168.1.1; add_header X-UA-Compatible IE=edge; proxy_set_header X-Forwarded-Host $server_name; proxy_set_he.. 2024. 4. 23.
일반 계정으로 docker 실행하기 docker를 처음 설치하면 root계정으로만 실행할 수 있다. docker그룹에 일반 계정을 추가하게되면 추가한 계정으로도 docker를 실행할 수 있다. #docker 그룹에 계정 추가 sudo usermod -G docker -a {계정} #docker 그룹 확인 sudo grep docker /etc/group 2024. 1. 31.
반응형